/* Download Options - Forceful Styling to Override Themes */
.download-options-container {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin: 10px 0;
    text-align: center;
}

.file-size-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.file-size-number {
    font-size: 45px;
    font-weight: bold;
    color: #2c3e50 !important;
    letter-spacing: -1px;
    white-space: nowrap;
}

.file-size-unit {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50 !important;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

.download-options {
    margin-bottom: 10px;
    display: inline-block;
    text-align: left;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/* Radio Option Label */
.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    cursor: pointer;
    padding: 6px 0;
    border-radius: 4px;
}

/* Hide default radio */
.radio-option input[type="radio"] {
    opacity: 0;
    position: absolute;
    width: 0;
    height: 0;
}

/* Custom Radio Indicator */
.radio-indicator {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ccc;
    border: 2px solid #ddd;
    transition: all 0.2s ease;
    position: relative;
    top: 1px;
}

/* Green when checked */
.radio-option input[type="radio"]:checked + .radio-indicator {
    background-color: #2ecc71 !important; /* Bright green */
    border-color: #2ecc71 !important;
}

/* Optional: Add a small white dot inside the green circle for better visibility */
.radio-option input[type="radio"]:checked + .radio-indicator::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.option-text {
    font-size: 13px;
    color: #333 !important;
    font-weight: 500;
}

/* Download Button - Strong Override */
.download-button {
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 14px 24px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    margin: 0 auto;
}

/* Hover and active states */
.download-button:hover {
    background-color: #222 !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.download-button:active,
.download-button:focus {
    background-color: #000 !important;
    color: #fff !important;
    transform: translateY(0);
    outline: none !important;
}