@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    min-height: 100vh;
    background-color: black;
    color: white;
    margin: 0;
    padding: 20px;
}
.cart {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
    font-family: 'Orbitron', sans-serif;
    margin: 0;
    padding: 20px;
}

.container {
    width: 80%;
    max-width: 1200px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid white;
    border-radius: 8px;
}

.cart-header {
    text-align: center;
    margin-bottom: 20px;
}

.cart-header:hover {
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
    transform: scale(1.05);
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.cart-table th,
.cart-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid white;
}

.cart-table th {
    font-weight: 700;
    text-transform: uppercase;
}

.cart-table td {
    vertical-align: top;
}

.customizations {
    font-size: 0.9em;
    color: #ccc; /* Slightly dimmed for hierarchy */
}

.actions form {
    display: inline;
}

.remove-btn {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 5px 10px;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background-color: white;
    color: black;
}

.total {
    text-align: right;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.checkout-btn {
    display: block;
    width: calc(100% - 30px);
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1em;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background-color: white;
    color: black;
}

.empty-cart {
    text-align: center;
    font-size: 1.2em;
}

.continue-shopping {
    color: white;
    text-decoration: underline;
    cursor: pointer;
}

.continue-shopping:hover {
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    .cart-table th,
    .cart-table td {
        font-size: 0.9em;
        padding: 8px;
    }
}