body {
    background-color: rgb(255, 216, 255);
} /*website background */

header h1 {
    font-size: 3rem;
    color: purple;
    text-align: center;
} /*web title*/

.navigation, .foot {
    list-style: none;
    background-color: rgb(255, 192, 247);
    display: flex;
    justify-content: center;
    padding: 10px 0;
} /*nav and foot bars*/

.navigation li, .foot li {
    margin: 0 50px;
} /* nav and foot margins*/

.navigation a, .foot a {
    text-decoration: none;
    color: purple;
    font-size: 1.2em;
} /* nav and foot link decor*/

.navigation a:hover, .foot a:hover {
    background-color: plum;
    color: white;
} /* nav and foot hover links*/

.container {
    display: flex;    
} /* all containers flexed*/

#right_content {
    display:flex;
    justify-content: center;
    width: 600px;
    margin-left: 20%;
    height: 300px;
 } /* right side is big picture*/

  #left_content {
    display:flex;
    justify-content: center;
    flex-direction: column;
    align-items: center; 
    text-align: center;
    width: 300px;
    height: 300px;
    background-color: rgb(242, 157, 255);
    box-shadow: 6px 6px 5px rgb(255, 114, 253);
    border-radius: 20px;
} /* left is text, qty, etc*/

.contactbtn {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px;
    font-size: 1rem;
    color: rgb(0, 0, 0);
    background-color: white;
    text-decoration: none;
    border-radius: 8px;
} /* button decor on the contact page*/

.contactbtn:hover {
    background-color: plum;
} /* hover stuff*/

.contactcontainer {
    display: flex;
    justify-content: center;
} /* another flexed container for buttons on contact page*/

.abouttitle {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
} /* about title style*/

.aboutdes {
   text-align: center; 
} /* about description*/

#main {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
} /* multi product flex for many items*/

.flex-item {
    background-color: rgb(242, 157, 255);
    height: 500px;
    box-shadow: 6px 6px 5px rgb(255, 114, 253);
    text-align: center;
    border-radius: 20px;
} /* like styled cards for the items*/

.backbtn, .buybtn {
    display: inline-block;
    border:none;
    padding: 2px 5px;
    margin: 15px;
    font-size: .8rem;
    color: rgb(0, 0, 0);
    background-color: rgb(186, 149, 249);
    text-decoration: none;
    border-radius: 2px;
} /* button styles of course*/

.buybtn:hover {
    cursor: pointer;
    background-color: plum;
} /* hover stuff again*/

.backbtn:hover {
    background-color: plum;
}/* again */

table {
  border-collapse: collapse;
  width: 100%;
} /* table design*/

#cartcontainer {
    display: flex;
    justify-content: center; 
    align-items: flex-start; 
    gap: 20px;
    margin: 30px;
    flex-wrap: wrap;  
} /* flexed container for cart*/

.cart {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    min-width: 300px;  
} /*cart cards similar to multi product page*/

td {
padding: 8px;
} /*organization*/

.flex-item a {
    text-decoration: none;
} /* no underlines in links*/

.flex-item a:hover {
    color: white;
} /* hover again */

/*Featue Item title*/
.featureitem {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    color: rgb(170, 51, 144);
}

/*img get multi product */
.flex-item img {
    border-radius: 25px;

}

/*link tables*/
.linkstable {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/*cart table in show_cart*/
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  .cart-table th,
  .cart-table td {
    border: 1px solid rgb(87, 0, 106);
    padding: 8px 10px;
    text-align: left;
  }
  
  .cart-table th {
    background: #ffd8fe;
    font-weight: bold;
  }
  
  .cart-table input[type="text"] {
    width: 50px;
    text-align: center;
  }
  
  .cart-table input[type="submit"]:hover {
    background: #ddd;
  }
  
  /*button design*/
  .miscbtn {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px;
    font-size: 1rem;
    color: rgb(0, 0, 0);
    background-color: white;
    text-decoration: none;
    border-radius: 8px;
  }
  
.miscbtn:hover {
    background: #f3abf7;
  }
  
  /*container for button layout*/
.miscontainer {
    display: flex;
    justify-content: center;
  }

  /*shows cart total*/
.cart-total {
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    color: rgb(49, 1, 53);
}

/* show_cart */
.plo {
    text-align: center;
  }
  
  .plo h1 {
    font-size: 22px;
    margin-bottom: 25px;
    color: rgb(43, 0, 51);
    font-family: 'Courier New', Courier, monospace;
  }
  
  .plo a {
    text-decoration: none;
    display: inline-block;
  }
  
  .plo button {
    background-color: #d664b2;
    color: rgb(0, 0, 0);
    border: none;
    padding: 10px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }
  
  .plo button:hover {
    background-color: #d899d4;
  }
  

  /*used for report*/

  .prod-table {
    width: 90%;
    margin: 20px auto;
    border-collapse: collapse;   
    border: 2px solid #000;     
}

.prod-table th,
.prod-table td {
    border: 1px solid #000;      
    padding: 8px 10px;
    text-align: left;
}

.prod-table td img {
  max-width: 300px;
}
.prod-table th {
    background: #f2f2f2;
    font-weight: bold;
}

/*admin dashboard*/
.tab {
  padding: 15px;
  margin-bottom: 20px;
}

.tab label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}

.photo-container {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  padding: 10px;
  margin: 10px;
  width: 220px;
}

.photo-container img.thumbnail {
  max-width: 120px;
  height: auto;
  display: block;
  margin: 5px auto 10px;
}

.photo-container form {
  margin-top: 5px;
}

.return-btn {
  display: inline-block;
  background-color: #d664b2;
  color: white;
  border: none;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
  margin: 15px;
}

/*customer choice login */
.login-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin: 40px auto;
}

#right_content_form,
#left_content_form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 20px;
  background-color: rgb(242, 157, 255);
  box-shadow: 6px 6px 5px rgb(255, 114, 253);
  border-radius: 20px;
  max-width: 400px;
  width: 100%;
}

#right_content_form h2,
#left_content_form h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 15px;
}

.form-row {
  margin-bottom: 10px;
}

.form-row label {
  display: block;
  margin-bottom: 4px;
}

/* Input*/
.form_input,
#left_content_form input[type="text"],
#left_content_form input[type="tel"],
#left_content_form input[type="email"],
#left_content_form input[type="password"],
#left_content_form select {
  width: 100%;
  padding: 6px 8px;
  box-sizing: border-box;
}


#right_content_form input[type="submit"],
#left_content_form input[type="submit"] {
  margin-top: 5px;
  padding: 8px 14px;
  border: none;
  background-color: rgb(83, 0, 55);
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
}

#right_content_form input[type="submit"]:hover,
#left_content_form input[type="submit"]:hover {
  background-color: rgb(246, 102, 198);
}

.guestformcontainer {
  text-align: center;
}

.guest-form {
  max-width: 420px;
  margin: 20px auto;
  padding: 18px;
  background: rgb(242, 157, 255);
  box-shadow: 6px 6px 5px rgb(255, 114, 253);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guest-form label {
  font-weight: bold;
  margin-bottom: 3px;
}

.guest-form input[type="text"],
.guest-form input[type="email"] {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.guest-form button[type="submit"] {
  margin-top: 6px;
  padding: 10px 14px;
  border: none;
  background-color: rgb(83, 0, 55);
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
}

.guest-form button[type="submit"]:hover {
  background-color: rgb(246, 102, 198);
}

.adminlog {
  text-align: center;
}

.admincontainer{
  text-align: center;
}
.admincontainer ul {
    list-style: none;

}

.displaytitle {
  text-align: center;
  font-family: Georgia, 'Times New Roman', Times, serif
}

.secret-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}