/* Profile Page Styles */

/* Profile Header */
.profile-header-card {
    border-radius: 15px;
    overflow: hidden;
}

.profile-image-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.profile-image-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    overflow: hidden;
}

.profile-initial {
    text-transform: uppercase;
}

.profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.membership-badge {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Sidebar Navigation */
.list-group-item {
    border: none;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.list-group-item.active {
    background: var(--techsolut-gradient);
    color: white;
    border-radius: 0;
}

.list-group-item:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.03);
}

/* Stat Boxes */
.stat-box {
    transition: all 0.3s ease;
    border-radius: 10px;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Activity Icons */
.activity-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-activity-project {
    background-color: #4361ee;
}

.bg-activity-dataset {
    background-color: #3a0ca3;
}

.bg-activity-annotation {
    background-color: #7209b7;
}

.bg-activity-model {
    background-color: #f72585;
}

/* Form Controls */
.language-option {
    cursor: pointer;
    transition: all 0.2s ease;
}

.language-option:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.form-check-input:checked + .language-option {
    border-color: var(--techsolut-green-light);
    background-color: rgba(146, 254, 157, 0.1);
}

/* API Key container */
.api-key-container {
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 5px;
}

.copy-btn {
    cursor: pointer;
}

/* Tab Content Animation */
.tab-pane {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .profile-image-container {
        width: 80px;
        height: 80px;
    }
    
    .stat-box {
        margin-bottom: 15px;
    }
    
    .membership-badge {
        margin-top: 15px;
    }
}