/* Profile Completion Alert */
.profile-completion-alert {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    color: white;
}

.profile-alert-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Circle Chart */
.profile-circle-chart {
    position: relative;
    flex-shrink: 0;
}

.circle-svg {
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 6;
}

.circle-progress {
    fill: none;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 188.4; /* 2 * PI * 30 */
    transition: stroke-dashoffset 0.5s ease;
}

.circle-progress.high {
    stroke: #4caf50;
}

.circle-progress.medium {
    stroke: #ffc107;
}

.circle-progress.low {
    stroke: #ff5252;
}

.circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: bold;
    color: white;
}

/* Alert Text */
.profile-alert-text {
    flex-grow: 1;
}

.profile-alert-text h5 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.profile-alert-text .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px;
    line-height: 1.5;
}

.badge-missing {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Action Button */
.profile-alert-action {
    flex-shrink: 0;
}

.btn-profile-update {
    background: white;
    color: #667eea;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-profile-update:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #667eea;
}

/* Close Button */
.alert-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 5px 10px;
    line-height: 1;
}

.alert-close:hover {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-completion-alert {
        margin: 15px;
        padding: 15px;
    }
    
    .profile-alert-content {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-alert-action {
        width: 100%;
    }
    
    .btn-profile-update {
        display: block;
        width: 100%;
    }
    
    .circle-text {
        font-size: 16px;
    }
}

/* Alternative Color Schemes (Choose one) */

/* Blue Theme */
.profile-completion-alert.blue-theme {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
}

/* Green Theme */
.profile-completion-alert.green-theme {
    background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
}

/* Orange Theme */
.profile-completion-alert.orange-theme {
    background: linear-gradient(135deg, #fb8c00 0%, #f57c00 100%);
}