/* Profile Completion Circle Styles */
.profile-completion-wrapper {
    display: inline-block;
    position: relative;
}

.progress-circle {
    position: relative;
    display: inline-block;
}

.progress-ring {
    transform: rotate(-90deg);
    transition: all 0.3s ease;
}

.progress-bar-circle {
    transition: stroke-dashoffset 1.5s ease-in-out;
    animation: progressAnimation 2s ease-in-out;
}

.progress-text {
    font-size: 16px;
    font-weight: bold;
    color: #28a745;
}

.profile-image-container {
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.profile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes progressAnimation {
    0% {
        stroke-dashoffset: 377;
    }
    100% {
        stroke-dashoffset: var(--progress-offset);
    }
}

/* Profile Menu Styles */
.profile-main-menu {
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-main-menu:hover {
    background-color: #f8f9fa !important;
}

.profile-chevron {
    transition: transform 0.3s ease;
}

.profile-main-menu[aria-expanded="true"] .profile-chevron {
    transform: rotate(180deg);
}

.profile-submenu {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 8px;
}

.profile-submenu-link {
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.profile-submenu-link:hover {
    background-color: #e9ecef !important;
    color: #495057 !important;
    text-decoration: none;
}

.profile-submenu-link.bg-primary {
    background-color: #007bff !important;
}

/* Mobile specific styles */
@media (max-width: 768px) {
    .progress-text {
        font-size: 12px;
    }
    
    .profile-completion-wrapper .progress-circle {
        width: 100px !important;
        height: 100px !important;
    }
}

/* Responsive adjustments */
@media (min-width: 992px) {
    .progress-text {
        font-size: 18px;
    }
}