/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Cart Container */
.cart-container {
    width: 80%;
    max-width: 900px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

/* Cart Title */
h1 {
    text-align: center;
    font-weight: 600;
    color: #333;
    font-size: 2em;
    margin-bottom: 20px;
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-item1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fafafa;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cart-item1 img {
    max-width: 100px;
    border-radius: 6px;
}

.cart-item-details {
    flex-grow: 1;
    padding-left: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-name {
    font-size: 1.2em;
    font-weight: 500;
}

.cart-item-price {
    font-weight: bold;
    color: #27ae60;
}

/* Cart Footer */
.cart-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

button {
    font-family: 'Poppins', sans-serif;
    padding: 10px 20px;
    border-radius: 6px;
    border: none;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-clear {
    background-color: #e74c3c;
    color: white;
}

.btn-clear:hover {
    background-color: #c0392b;
}

.btn-checkout {
    background-color: #27ae60;
    color: white;
}

.btn-checkout:hover {
    background-color: #2ecc71;
}

.btn-pay, .btn-submit {
    background-color: #3498db;
    color: white;
}

.btn-pay:hover, .btn-submit:hover {
    background-color: #2980b9;
}

.checkout-section {
    margin-top: 20px;
    text-align: center;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: 600;
}

input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    width: 95%;
}
.auth-container, .admin-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
}

.btn-clear, .btn-checkout, .btn-submit, .btn-pay {
    background-color: #F37254;
    border: none;
    border-radius: 5px;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

.btn-clear:hover, .btn-checkout:hover, .btn-submit:hover, .btn-pay:hover {
    background-color: #D65A38;
}

.checkout-section {
    margin-top: 20px;
}

.checkout-section input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}