body {
    background-color: #0077b6;
    font-family: Arial, sans-serif;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

h1 {
    font-size: 50px;
    margin-bottom: 30px;
}

form {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 50px;
    border-radius: 4px;
    text-align: center;
}

input[type="text"], input[type="password"], select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

button {
    background-color: #48cae4;
    color: #fff;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
}

button:hover {
    background-color: #6bb9d6;
}

label {
    font-size: 18px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.btn {
    background-color: #48cae4;
    color: #fff;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
}

.btn:hover {
    background-color: #6bb9d6;
}

.nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 9999;
}

.nav li {
    margin: 0 10px;
}

.nav-button {
    display: block;
    padding: 10px;
    color: #0077b6;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #0077b6;
    color: #fff;
}

.active {
    background-color: #4CAF50;
    color: white;
}

@media screen and (max-width: 600px) {
    .navbar a {
        float: none;
        display: block;
        text-align: left;
    }
}

table {
    border-collapse: collapse;
    width: 80%;
    margin: 0 auto;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

tr:hover {
    background-color: #f5f5f5;
}

.product_rows {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .product_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .product_container {
    width: 48%;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    display: inline-block;
  }
  
  .product_container .image {
    margin-bottom: 10px;
  }
  
  .product_container .name {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .product_container .price {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .product_container .buy {
    background-color: #0077b6;
    color: #fff;
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
  }
  
  .product_container .buy:hover {
    background-color: #005582;
  }
  
.message_box .box{
	margin: 10px 0px;
    border: 1px solid #2b772e;
    text-align: center;
    font-weight: bold;
    color: #2b772e;
	}
.table td {
	border-bottom: #F0F0F0 1px solid;
	padding: 10px;
	}
    .cart_div {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    
.cart_div a {
	color:#000;
	}	
.cart_div span {
	font-size: 12px;
    line-height: 14px;
    background: #F68B1E;
    padding: 2px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: absolute;
    top: -1px;
    left: 13px;
    color: #fff;
    width: 14px;
    height: 13px;
    text-align: center;
	}
.cart .remove {
    background: none;
    border: none;
    color: #0067ab;
    cursor: pointer;
    padding: 0px;
	}
.cart .remove:hover {
	text-decoration:underline;
	}
    .footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #f2f2f2;
        padding: 10px;
        text-align: center;
      }