.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.radio-option {
    transition: all 0.2s ease;
}

.radio-option:hover {
    background-color: #f3f4f6;
}

.radio-option.selected {
    background-color: #e5e7eb;
    border-color: #3b82f6;
}

.api-token-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.api-token-container.active {
    max-height: 200px;
    margin-top: 12px;
}

.popup-body {
    overflow-y: auto;
    flex: 1;
    padding: 1.5rem;
}

/* Custom scrollbar */
.popup-body::-webkit-scrollbar {
    width: 8px;
}

.popup-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.popup-body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.popup-body::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
