﻿.card {
    background-color: #2C2C2C;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1);
}

.help-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: black !important;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

    .help-circle:hover {
        background-color: #e2e6ea;
        transform: scale(1.3);
    }
/* One class to round the Video.js player (video, poster, controls) */
.player-rounded {
    border-radius: 16px; /* tweak radius to taste */
    overflow: hidden; /* clips the tech video + poster to the radius */
}

    /* Keep descendants rounded too (helps on Safari) */
    .player-rounded .vjs-tech,
    .player-rounded .vjs-poster,
    .player-rounded .vjs-control-bar,
    .player-rounded .vjs-big-play-button {
        border-radius: 16px;
    }

.rounded-image {
    border-radius: 16px;
    object-fit: cover; /* Prevents distortion */
    width: 100%;
    height: auto;
    display: block;
}

.parent-container {
    border-radius: 16px; /* Sometimes needed on parent too */
    overflow: hidden;
}

.image-container {
    overflow: hidden; /* This can clip the border-radius */
    transform: scale(1.1); /* Transforms can affect border-radius rendering */
}
/* Container styling */
.package-container {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

    .package-container:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

/* Radio button and label alignment */
.package-selector {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

    /* Custom radio button styling */
    .package-selector .form-check-input {
        margin-top: 3px;
        width: 20px;
        height: 20px;
        border: 2px solid #ffffff;
        background-color: transparent;
        cursor: pointer;
    }

        .package-selector .form-check-input:checked {
            background-color: cornflowerblue;
            border-color: cornflowerblue;
        }

        .package-selector .form-check-input:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }

/* Label content styling */
.package-content {
    flex: 1;
    color: #ffffff;
}

.package-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.package-price {
    font-size: 20px;
    font-weight: bold;
    color: green;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Details button styling */
.rounded-details-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-top: 10px;
    transition: all 0.3s;
    text-decoration: none !important;
    display: inline-block;
}

.rounded-details-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(5px);
}

.rounded-details-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

