﻿:root {
    --bg-color: #0d0d0d;
    --card-bg: rgba(40, 0, 0, 0.4);
    --maroon-accent: #800000;
    --border-glass: rgba(255, 255, 255, 0.1);
}

/* Container styling matching the deep glassmorphism theme */
.config-container {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 255, 0.5);
    box-sizing: border-box;
}

.config-title {
    color: white;
    margin-top: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(128, 0, 0, 0.3);
    padding-bottom: 10px;
    font-size: 1.5rem;
}

.config-group {
    margin-bottom: 25px;
}

.config-label {
    display: block;
    font-weight: bold;
    margin-bottom: 12px;
    color: aqua;
    text-decoration: underline;
    font-size: 0.95rem;
}


/* Flex setup for the 8 colors */
.color-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* The individual radio label wrapper */
.color-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px 10px 5px 0;
    transition: opacity 0.2s;
}

    .color-option:hover {
        color: aqua;
    }

    /* Customizing the radio button color to match theme */
    .color-option input[type="radio"],
    .type-option input[type="radio"] {
        accent-color: #800000;
        width: 16px;
        height: 16px;
        cursor: pointer;
        margin: 0;
    }

/* The colored circle indicator */
.color-swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    box-sizing: border-box;
}

/* Dropdown list styling */
.config-select {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    box-sizing: border-box;
}

    .config-select option {
        background: #111;
        color: white;
    }

/* Ammo vs Golf toggle layout */
.box-type-flex {
    display: flex;
    gap: 30px;
}

.type-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* Order block at the bottom */
.order-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-label {
    color: #aaa;
    font-size: 1.1rem;
}

.price-amount {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
}

.btn-maroon {
    background: blue;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.3s;
}

    .btn-maroon:hover {
        background: blue;
        opacity: 0.8;
    }

.order-group .btn-maroon.aspNetDisabled {
    padding: 20px !important;
    background: black !important;
}


/* Small screen optimization */
@media (max-width: 480px) {
    .order-group {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .btn-maroon {
        width: 100%;
    }
}