html, body {
    height: 100%; 
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eeebe3;
	height: 100%; 
    flex-direction: column;
	display:flex;
}

main {
    flex-grow: 1;
	justify-content: center; 
}

.top{
	background-color: #eeebe3;
}
.logo {
    text-align: center; 
	background-color: #eeebe3;
   }

.logo img {
	padding-top:10px;
    max-width: 100%; 
    height: auto;
    width: 450px; 
}

main {
    flex-grow: 1;
	place-items: center;
	display: grid;

}


.cart-container {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    margin-top: 20px; 
	 flex-grow: 1;
  }

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

table td:nth-child(n+3):nth-child(-n+5) {
    text-align: right;
}



.right-div {
    float: right;
	padding-right:20px;
}
.right-div img {
	max-width: 100%; 
    height: auto; 
    width: 100px; 
	padding-top: 20px;
}

h1 {
    color: #4C5C69; 
    text-align: center;
    }

h3 {
	 color: #4C5C69; 
    text-align: center;
}

/* Button in the product info */
.btn {
    background-color: #1A85A1;  
    color: #eeebe3;               
   
}

/* Hover effect */
.btn:hover {
    background-color: #4C5C69;  
    border-color: #3e4391;      
}


.container {
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}



.watch-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center; 
    width: 80%; 
    max-width: 900px; 
}
.sort {
    text-align: right;
    margin-right: 120px;
}

.product {
    background-color: #e4fa9e;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(189, 138, 89, 1);
    text-align: center;
}

.product img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-description {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.price {
    margin-top: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.product h3 {
    font-size: 18px;
    margin-bottom: 10px;
}


nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}


nav ul li {
    display: inline-block;
    margin-right: 20px;  
}


nav ul li a {
    color: #eeebe3;
    text-decoration: none;
    padding: 10px 15px;
    display: block;  
}


nav {
    background-color: #1A85A1; 
    padding: 10px;
}


nav ul li a:hover {
    background-color: #eeebe3;  
    border-radius: 5px;
	color:black;
}
	
 .register-form {
            border: 1px solid #ccc;
            padding: 20px;
            border-radius: 5px;
            background-color: #eeebe3;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
			width: 400px;
			justify-content: center;
            align-items: center;
			margin-bottom: 40px;
        }

        .register-form label {
            display: block;
            margin-bottom: 10px;
            font-weight: bold;
			padding-right: 10px; 
    		padding-left: 10px;  
        }

        .register-form input {
            width: 100%;
            padding: 10px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }

        .register-form button {
             width: 100%;
            padding: 10px;
            background-color: #1A85A1;
            color: #eeebe3;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
        }

        .register-form button:hover {
            background-color: #DEDEDE;
			color:black;
        }
.footer {
            background-color: #1A85A1;
            color: #eeebe3;
            text-align: center;
             padding: 10px 15px;
            font-size: 16px;
			font-family: Arial, sans-serif;
			margin-top: auto;
        }
