body{

	background-color: #ecebab;
 	padding: 20px;
}

.highlight-box{
    background-color: #3dc69d; 
    padding: 100px;              
    border: 2px solid #ccc;     
    border-radius: 10px;        
    margin: 20px 0;            
}


.right-align{
    text-align: right;
}

.TimesNewRoman-text{
	font-family: "Times New Roman", Times, serif;
	color: blue;
	font-size: 2em;
}

.Helvetica-text{
	font-family: Arial, Helvetica, sans-serif;
	color: red;
	font-size: 2em;
}

.container{
    background-color: blue;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.shoppingcart{
    float: right;
}

.inventory-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.inventory-card{
    background: #ca4f4f;
    border: 1px solid #d6d933;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.inventory-img{
    max-width: 150px;
    max-height: 150px;
    object-fit: cover;
    border-radius: 6px;
}

.no-image{
    width: 150px;
    height: 150px;
    background: #eee;
    color: #555;
    line-height: 150px;
    margin: 0 auto 10px;
    border-radius: 6px;
}

.form{
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: grid;
    gap: 15px;
}
  
.label {
    font-weight: bold;
}
  
  input[type="text"],
  input[type="email"],
  input[type="number"],
  input[type="password"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
    transition: border-color 0.3s;
  }
  
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="number"]:focus,
  input[type="password"]:focus {
    border-color: #005792;
    outline: none;ss
    }
  
  button,
  input[type="submit"] {
    background-color: #005792;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  button:hover,
  input[type="submit"]:hover {
    background-color: #003f6b;
  }
  
  /* Success / error messages */
  .success {
    color: green;
    font-weight: bold;
  }
  
  .error {
    color: red;
    font-weight: bold;
  }
  
  /* Footer */
  footer {
    text-align: center;
    margin-top: 40px;
    color: #777;
  }