/* General button styling */
button {
  font-family: Arial, sans-serif;
  font-size: 16px;
  padding: 10px 15px;
  margin: 5px;
  border: 2px solid #007BFF;
  border-radius: 5px;
  background-color: #007BFF;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s, box-shadow 0.3s;
}

#cupboardsContainer{
font-size:20px;
width:100%;
display: flex; /* Enables flexible layout */
  flex-wrap: wrap; /* Allows content to wrap */
  gap: 10px; /* Adds spacing between items */
  padding: 10px; /* Adds padding inside the container */
  border: 1px solid #ccc; /* Optional: For better visibility of the container */
  max-width: 100%; /* Optional: Define the container width */
flex-direction:row;/* Enables flexible layout */
margin-top: 20px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  
  margin-bottom: 20px;
}

.info{

display: flex;
flex-direction:row;
  flex-wrap: wrap; /* Allows content to wrap */
  gap: 10px; /* Adds spacing between items */
  padding:; /* Adds padding inside the container */

  max-width: 100%; /* Optional: Define the container width */
width:100%;
}
/* Hover effect */
button:hover {
  background-color: #0056b3;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Active effect */
button:active {
  background-color: #003d80;
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Disabled button styling */
button:disabled {
  background-color: #d6d6d6;
  color: #a1a1a1;
  border-color: #d6d6d6;
  cursor: not-allowed;
}



/* Cupboard Details Section Styling */
#cupboardDetails {
  margin-top: 20px;
  background-color: #ffffff;

  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

h2 {
  color: #007bff;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width:90%;
  margin:40px;
}

.info .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

.info .info-item label {
  font-weight: bold;
  color: #333;
}

.info .info-item .value {
  font-size: 16px;
  color: #007bff;
  font-weight: 500;
}

/* Style the Edit and Delete Buttons */
.cupboard-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.cupboard-buttons button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.cupboard-buttons button:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.cupboard-buttons button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}


.styled-details {
  font-family: Arial, sans-serif;
  font-size: 12px;
  color: #333;
  border: 1px solid #ccc;
  padding: 10px;
  margin: 20px 0;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.styled-details h2 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #555;
}

.styled-details table {
  width: 100%;
  border-collapse: collapse;
}

.styled-details th {
  text-align: left;
  padding: 5px;
  background-color: #f0f0f0;
  border-bottom: 1px solid #ccc;
  color: #444;
}

.styled-details td {
  padding: 5px;
  border-bottom: 1px solid #eee;
}



.hamburger-menu {
  position: fixed;
  top: 2px;
  left: 0;
  width: 100%;
  padding: 10px;
  z-index: 1000;
}

.hamburger {
  font-size: 30px;
  color: green;
  cursor: pointer;

}

.menu {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  width: 10%;
  background-color: #333;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu ul li {
  padding: 15px;
  text-align: center;
}

.menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.menu ul li a:hover {
  color:green;
  font-size:30px;
  transition:2s ease;
}

#content {
  padding: 50px;
}


#panelDetails {
  border: 1px solid #ddd;
  padding: 10px;
  margin-top: 20px;
  background-color: #fff;
}

#panelDetails ul {
  list-style: none;
  padding: 0;
}

#panelDetails ul li {
  margin: 5px 0;
}
 #display{
 display:flex;
background-color:white;
box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;

 }
