/* Profile Pages Styles */
.profile-page-bg {
    background-color: #f8fafc;
    min-height: calc(100vh - 80px);
    padding: 40px 0;
}

.profile-sidebar {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.profile-sidebar-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.profile-sidebar-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #111827;
}

.profile-sidebar-header p {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

.profile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-menu li {
    margin-bottom: 5px;
}

.profile-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 6px;
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.profile-menu-link i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.profile-menu-link:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.profile-menu-link.active {
    background-color: #d1fae5;
    color: var(--primary);
}

.profile-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.profile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.profile-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.profile-card-action {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.profile-info-item h6 {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 5px;
    font-weight: 500;
}

.profile-info-item p {
    font-size: 0.95rem;
    color: #111827;
    font-weight: 600;
    margin: 0;
}

.profile-main-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.profile-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    border: 2px solid var(--primary);
    padding: 2px;
    background-color: white;
}

.profile-avatar-container {
    position: relative;
    display: inline-block;
}

.profile-avatar-edit {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    font-size: 14px;
    color: #111827;
    cursor: pointer;
    border: 2px solid white;
}

.profile-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #4b5563;
}

.profile-contact-item i {
    color: #9ca3af;
    width: 16px;
    text-align: center;
}

/* Job Suggestion Card */
.job-suggestion-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 15px;
    border: 1px solid transparent;
    transition: all 0.2s;
}

.job-suggestion-card:hover {
    border-color: #d1fae5;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.job-suggestion-header {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.job-suggestion-icon {
    width: 48px;
    height: 48px;
    background-color: #fff7ed;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.job-suggestion-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
    line-height: 1.3;
}

.job-suggestion-company {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

.job-suggestion-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: #6b7280;
}

.job-suggestion-salary {
    font-weight: 700;
    color: var(--primary);
}

.badge-part-time {
    background-color: #f3f4f6;
    color: #4b5563;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.bookmark-btn {
    color: var(--primary);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 1.1rem;
}

/* Applied Jobs */
.applied-job-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 15px;
}

.applied-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.applied-job-info {
    display: flex;
    gap: 15px;
}

.applied-job-img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #1f2937;
}

.applied-job-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.applied-job-company {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0;
}

.applied-job-details {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 10px;
}

.applied-job-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.applied-job-details i {
    color: var(--primary);
}

.applied-job-status-badge {
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-review {
    background-color: #eff6ff;
    color: #3b82f6;
}

.status-accepted {
    background-color: #d1fae5;
    color: #059669;
}

.applied-job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #f3f4f6;
}

.applied-job-note {
    font-size: 0.85rem;
    color: #9ca3af;
    font-style: italic;
    margin: 0;
}

.btn-delete {
    color: #9ca3af;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-delete:hover {
    color: #ef4444;
}
