/* Redesigned Booster Form Styles */
.booster-confirm-btn {
    width: 100%;
    background: var(--secondary);
    color: #4c0137;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.booster-confirm-btn:hover {
    background: #96B64E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.booster-form-container {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    animation: boosterSlideDown 0.4s ease-out;
}

.booster-input-group {
    margin-bottom: 20px;
}

.booster-input-label {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

.booster-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 15px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.booster-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(183, 218, 93, 0.2);
}

.booster-submit-btn {
    width: 100%;
    background: white;
    color: #9B046F;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booster-submit-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.booster-cancel-link {
    display: block;
    text-align: center;
    font-size: 0.8rem;
    margin-top: 15px;
    opacity: 0.7;
    color: white;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.booster-cancel-link:hover {
    opacity: 1;
    text-decoration: underline;
}

@keyframes boosterSlideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}