/* Base styles */
.talentrus-profile {
    font-family: 'Roboto', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.talentrus-banner {
    position: relative;
    height: 200px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.talentrus-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.talentrus-avatar-container {
    position: relative;
    margin-top: -60px;
    text-align: center;
    z-index: 2;
}

.talentrus-avatar {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.talentrus-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Edit buttons */
.talentrus-edit-btn {
    position: absolute;
    background-color: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.talentrus-edit-btn:hover {
    background-color: rgba(240,240,240,1);
    transform: scale(1.05);
}

.talentrus-banner-edit {
    bottom: 10px;
    right: 10px;
}

.talentrus-avatar-edit {
    bottom: 5px;
    right: 5px;
}

/* Upload forms */
.talentrus-upload-form {
    display: none;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Theme variations */
/* Light theme */
.talentrus-light-profile {
    background-color: #ffffff;
    color: #333333;
}

/* Dark theme */
.talentrus-dark-profile {
    background-color: #2a2a2a;
    color: #f0f0f0;
}

.talentrus-dark-section {
    background-color: #333333;
    border: 1px solid #444444;
}

/* Professional theme */
.talentrus-professional-profile {
    background-color: #f7f9fc;
    color: #2c3e50;
}

.talentrus-professional-heading {
    color: #3498db;
    border-bottom: 2px solid #3498db;
}

/* Responsive styles */
@media (max-width: 768px) {
    .talentrus-row {
        flex-direction: column;
    }
    
    .talentrus-col {
        width: 100%;
    }
}