/* Candidate Profile Styles */

.profile-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

.cover-photo {
    height: 200px;
    background-color: #a0b4b7;
    background-size: cover;
    background-position: center;
    position: relative;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.cover-camera-btn {
    background: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #000 !important;
    border-radius: 50% !important;
}

.profile-photo-container {
    position: relative;
    margin-top: -112px;
    margin-inline-start: 24px;
    width: 152px;
    height: 152px;
}

.profile-photo {
    width: 152px;
    height: 152px;
    border-radius: 50%;
    border: 4px solid white;
    background-color: white;
    object-fit: cover;
}

.profile-info {
    padding: 24px;
    padding-top: 16px; 
}

.profile-name {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
    color: rgba(0, 0, 0, 0.9);
}

.profile-headline {
    font-size: 1rem;
    margin-top: 4px;
    margin-bottom: 8px;
    color: rgba(0, 0, 0, 0.9);
}

.profile-location {
    font-size: 0.875rem;
    color: rgba(0,0,0,0.6);
}

.sidebar-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 8px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}

.icon-action-btn i {
    pointer-events: none;
}

/* Accordion modifications for Add Profile Section */
.add-profile-accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: inherit;
    box-shadow: none;
}
.add-profile-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}
.add-profile-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0,0,0,.125);
}
.add-profile-accordion .accordion-item:last-child {
    border-bottom: none;
}
.add-profile-list-item {
    font-weight: 600;
    color: rgba(0, 0, 0, 0.6);
    border: none;
    padding-inline-start: 24px;
    padding-inline-end: 24px;
}
.add-profile-list-item:hover {
    color: rgba(0, 0, 0, 0.9);
    background-color: rgba(0, 0, 0, 0.08);
}

.experience-list, .education-list, .license-list, .course-list, .language-list, .skill-list {
    margin-top: 16px;
}
