/* Ana Dashboard Stilleri */

.dashboard-welcome {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 500;
}


/* Ana Container */

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f8f9fa;
    min-height: 100vh;
}


/* Hoşgeldiniz Mesajı */

.welcome-section {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.welcome-section h4 {
    margin: 0;
    color: #2d3436;
    font-size: 1.25rem;
    font-weight: 500;
}


/* Uyarı Kutusu */

.alert-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff3f3;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #f75061;
}

.alert-icon {
    color: #f75061;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-content h4 {
    color: #f75061;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.alert-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}


/* İlerleme Dairesi */

.progress-container {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.progress-circle {
    --size: 160px;
    --fg: #5d64df;
    --bg: #e9ecef;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: radial-gradient(closest-side, white 80%, transparent 0 99.9%, white 0), conic-gradient(var(--fg) calc(var(--value) * 1%), var(--bg) 0);
    margin: 0 auto 1rem;
    font-family: system-ui;
    font-size: calc(var(--size) / 5);
    color: var(--fg);
}

.progress-circle::before {
    counter-reset: percentage var(--value);
    content: counter(percentage) '%';
    font-weight: bold;
}

.progress-container h3 {
    color: #2d3436;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}


/* Dashboard Menüsü */

.dashboard-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.menu-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(93, 100, 223, 0.15);
}

.card-icon {
    color: #5d64df;
    margin-bottom: 1rem;
}

.card-content h5 {
    color: #2d3436;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.card-content p {
    color: #636e72;
    margin: 0;
    font-size: 0.9rem;
}


/* Responsive Düzenlemeler */

@media (max-width: 768px) {
    .dashboard-container {
        padding: 1rem;
    }
    .progress-circle {
        --size: 140px;
    }
    .menu-card {
        padding: 1.25rem;
    }
}


/* Ana Dashboard Container */

.job-seeker-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: #f8fafc;
    min-height: 100vh;
}


/* Profil Özet Kartı */

.profile-summary {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    padding: 2rem;
    border-radius: 16px;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.15);
}

.user-welcome h4 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.user-welcome p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}


/* CV Tamamlama Durumu */

.cv-status {
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-circle {
    --size: 120px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: conic-gradient(white calc(var(--value) * 1%), rgba(255, 255, 255, 0.2) 0);
    position: relative;
    font-weight: bold;
}

.progress-circle::before {
    content: counter(percentage) '%';
    counter-reset: percentage var(--value);
    font-size: 1.5rem;
    color: white;
}

.progress-label {
    position: absolute;
    bottom: -2rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}


/* Bildirim Kutusu */

.notification-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #f59e0b;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.notification-box i {
    font-size: 1.5rem;
    color: #f59e0b;
}

.notification-content h5 {
    margin: 0 0 0.25rem 0;
    color: #1e293b;
    font-size: 1.1rem;
}

.notification-content p {
    margin: 0;
    color: #64748b;
}


/* Hızlı Erişim Kartları */

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.action-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-header i {
    font-size: 1.5rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.action-card p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}


/* Kart Renk Varyasyonları */

.action-card.profile i {
    color: #4f46e5;
}

.action-card.cv i {
    color: #0ea5e9;
}

.action-card.favorites i {
    color: #ec4899;
}

.action-card.applications i {
    color: #10b981;
}


/* Responsive Düzenlemeler */

@media (max-width: 768px) {
    .job-seeker-dashboard {
        padding: 1rem;
    }
    .profile-summary {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    .quick-actions {
        grid-template-columns: 1fr;
    }
}


/* Ana Konteyner */

.dashboard-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
}


/* Üst Bilgi Alanı */

.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.welcome-text {
    margin-bottom: 2rem;
}

.welcome-text h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.welcome-text p {
    color: #718096;
    margin: 0;
    font-size: 1.1rem;
}


/* CV Tamamlama Bölümü */

.cv-completion-section {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.cv-progress {
    flex: 0 0 auto;
    text-align: center;
}

.progress-ring {
    width: 150px;
    height: 150px;
    margin-bottom: 1rem;
}

.progress-circle {
    --size: 150px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: conic-gradient(#4c1d95 calc(var(--value) * 1%), #e2e8f0 0);
    position: relative;
    overflow: hidden;
}

.progress-circle::before {
    content: '';
    position: absolute;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    background: white;
    border-radius: 50%;
}

.progress-text {
    position: relative;
    font-size: 2rem;
    font-weight: bold;
    color: #4c1d95;
}


/* CV Kontrol Listesi */

.cv-checklist {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.checklist-item:hover {
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.checklist-item i {
    font-size: 1.2rem;
    color: #d1d5db;
}

.checklist-item.completed i {
    color: #10b981;
}

.checklist-item span {
    color: #4b5563;
    font-size: 1rem;
}

.checklist-item.completed span {
    color: #1f2937;
    font-weight: 500;
}


/* Responsive Düzenlemeler */

@media (max-width: 768px) {
    .cv-completion-section {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .cv-checklist {
        width: 100%;
    }
}


/* Dashboard Grid */

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}


/* Dashboard Kartları */

.dashboard-card {
    background: white;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.card-content {
    padding: 1.5rem;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4c1d95, #6d28d9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dashboard-card:hover::before {
    opacity: 1;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: grid;
    place-items: center;
    background: #f8fafc;
    border-radius: 12px;
}

.card-icon i {
    font-size: 1.3rem;
    color: #4c1d95;
}

.card-info {
    flex: 1;
}

.card-info h3 {
    margin: 0 0 0.25rem 0;
    color: #2d3748;
    font-size: 1.1rem;
}

.card-info p {
    margin: 0;
    color: #718096;
    font-size: 0.9rem;
}


/* Responsive Tasarım */

@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-wrapper {
        padding: 1rem;
    }
    .welcome-text h2 {
        font-size: 2rem;
    }
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}


/* CV Durum Konteyner */

.cv-status-container {
    display: flex;
    gap: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}


/* Sol Taraf - Progress Circle */

.cv-progress-section {
    flex: 0 0 auto;
    text-align: center;
    padding-right: 2rem;
    /* border-right: 1px solid #e5e7eb; */
}

.progress-circle {
    --size: 180px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: conic-gradient(#4c1d95 calc(var(--value) * 1%), #e2e8f0 0);
    position: relative;
    margin-bottom: 1.5rem;
}

.progress-circle::before {
    content: '';
    position: absolute;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    background: white;
    border-radius: 50%;
}

.progress-text {
    position: relative;
    font-size: 2.5rem;
    font-weight: bold;
    color: #4c1d95;
}

.progress-info {
    text-align: center;
}

.progress-info h3 {
    color: #2d3748;
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
}

.progress-info p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
}


/* CV Bölümleri */

.cv-sections {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-left: 2rem;
}

.section-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #f8fafc;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.section-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.section-item i {
    font-size: 1.1rem;
    color: #cbd5e1;
    min-width: 20px;
}

.section-item.completed i {
    color: #10b981;
}

.section-item span {
    color: #64748b;
    font-size: 0.95rem;
    white-space: nowrap;
}

.section-item.completed span {
    color: #1e293b;
    font-weight: 500;
}


/* Responsive düzenleme */

@media (max-width: 1200px) {
    .cv-sections {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cv-sections {
        grid-template-columns: 1fr;
        padding-left: 0;
    }
}


/* Responsive Düzenlemeler */

@media (max-width: 992px) {
    .cv-status-container {
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
    }
    .cv-progress-section {
        width: 100%;
        max-width: 300px;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
        /* border-bottom: 1px solid #e5e7eb; */
        text-align: center;
    }
    .cv-sections {
        width: 100%;
        padding-left: 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 640px) {
    .cv-status-container {
        padding: 1rem;
        margin: 1rem 0;
    }
    .cv-sections {
        grid-template-columns: 1fr;
    }
    .progress-circle {
        --size: 150px;
        /* Mobilde biraz daha küçük grafik */
    }
    .section-item {
        padding: 0.75rem;
    }
    .section-item span {
        font-size: 0.9rem;
    }
}


/* Uyarı Mesajı */

.alert-danger {
    background-color: #fff1f2;
    border: 1px solid #fecdd3;
    border-left: 4px solid #f43f5e;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1rem 0 2rem 0;
    position: relative;
}

.alert-danger h4 {
    color: #be123c;
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-danger i {
    color: #e11d48;
    font-size: 1.3rem;
}

.alert-danger p {
    color: #9f1239;
    margin: 0.75rem 0 0 0;
    font-size: 0.95rem;
    line-height: 1.5;
}


.alert-primary {
    background-color: #f0f7ff;
    border: 1px solid #bfdbfe;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin: 1rem 0 2rem 0;
    position: relative;
}

.alert-primary h4 {
    color: #1e40af;
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-primary i {
    color: #3b82f6;
    font-size: 1.3rem;
}

.alert-primary p {
    color: #1e3a8a;
    margin: 0.75rem 0 0 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Kapatma Butonu */

.btn-close {
    width: 25px;
    height: 25px;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: 4px;
    opacity: 0.5;
    padding: 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
}

.btn-close:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.05);
}

.btn-close:focus {
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}


/* Responsive düzenleme */

@media (max-width: 768px) {
    .alert-danger {
        padding: 1rem;
        margin: 1rem 0 1.5rem 0;
    }
    .alert-danger h4 {
        font-size: 1rem;
    }
    .btn-close {
        padding: 0.35rem;
    }
}


/* CV Navigation Styles */

.cv-sidebar {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    position: sticky;
    top: 20px;
}

.cv-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cv-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.875rem 1rem;
    color: #64748b;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    background: #f8fafc;
}

.cv-nav-item i {
    font-size: 1.2rem;
    color: #4c1d95;
    min-width: 24px;
    transition: all 0.3s ease;
}

.cv-nav-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

.cv-nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: #4c1d95;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.cv-nav-item:hover::before {
    transform: scaleY(1);
}

.cv-nav-item:hover {
    background: #f1f5f9;
    color: #1e293b;
    transform: translateX(5px);
}

.cv-nav-item.active {
    background: #4c1d95;
    color: #fff;
}

.cv-nav-item.active i {
    color: #fff;
}


/* Responsive Styles */

@media (max-width: 992px) {
    .cv-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .cv-nav-item {
        padding: 0.75rem;
    }
    .cv-nav-item span {
        font-size: 0.9rem;
    }
}


/* Modal Styles */

.modal-content {
    border: none;
    border-radius: 16px;
}

.modal-header {
    border-bottom: 1px solid #e2e8f0;
    padding: 1.25rem 1.5rem;
}

.modal-header .modal-title {
    color: #1e293b;
    font-weight: 600;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid #e2e8f0;
    padding: 1.25rem 1.5rem;
}


/* Empty State Styles */

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 16px;
    margin: 2rem 0;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: #f8f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
}

.empty-state-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed #4c1d95;
    animation: spin 30s linear infinite;
}

.empty-state-icon i {
    font-size: 2rem;
    color: #4c1d95;
}

.empty-state-content h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.empty-state-content p {
    color: #64748b;
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* Responsive */

@media (max-width: 768px) {
    .empty-state {
        padding: 3rem 1.5rem;
    }
    .empty-state-icon {
        width: 60px;
        height: 60px;
    }
    .empty-state-icon i {
        font-size: 1.5rem;
    }
    .empty-state-content h3 {
        font-size: 1.25rem;
    }
}


/* CV Preview Styles */

.cv-preview {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cv-section {
    margin-bottom: 2.5rem;
}

.cv-section:last-child {
    margin-bottom: 0;
}

.cv-section-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.cv-section-header h3 {
    color: #1e293b;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.cv-section-header i {
    color: #4c1d95;
}

.cv-name {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
}

.info-item i {
    color: #4c1d95;
    font-size: 1.1rem;
}

.experience-item,
.education-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.experience-item:last-child,
.education-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.experience-header h4,
.education-header h4 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.company,
.department {
    display: block;
    color: #4c1d95;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.date {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.description {
    color: #475569;
    margin: 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.skill-item {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-name {
    color: #1e293b;
    font-weight: 500;
}

.skill-level {
    color: #4c1d95;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .cv-preview {
        padding: 1.5rem;
    }
    .cv-name {
        font-size: 1.5rem;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
}


/* CV A4 Styles */

.cv-a4 {
    background: white;
    width: 210mm;
    min-height: 297mm;
    margin: 0 auto;
    padding: 30mm 20mm;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    position: relative;
}

.cv-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.cv-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
}

.cv-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cv-intro {
    flex: 1;
}

.cv-intro h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.5rem;
}

.cv-intro h2 {
    font-size: 1.25rem;
    color: #4c1d95;
    font-weight: 500;
    margin: 0 0 1rem;
}

.cv-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cv-contact span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.cv-summary {
    margin-bottom: 2rem;
    color: #475569;
    line-height: 1.6;
}

.cv-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.cv-section {
    margin-bottom: 2rem;
}

.cv-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.cv-section h3 i {
    color: #4c1d95;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -6px;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #4c1d95;
    border: 3px solid white;
}

.timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem;
}

.timeline-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.company {
    color: #4c1d95;
    font-weight: 500;
}

.date {
    color: #64748b;
}

.timeline-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-details li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    color: #475569;
}

.timeline-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4c1d95;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #f8f0ff;
    color: #4c1d95;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
}

.language-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.language-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.level-indicator {
    display: flex;
    gap: 3px;
}

.level {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
}

.level.active {
    background: #4c1d95;
}

.certificate-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.certificate-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.25rem;
}

.certificate-item .date {
    font-size: 0.85rem;
}

@media print {
    .cv-a4 {
        box-shadow: none;
        padding: 0;
    }
    .page-header,
    .cv-actions {
        display: none;
    }
}

@media (max-width: 210mm) {
    .cv-a4 {
        width: 100%;
        padding: 2rem;
    }
    .cv-grid {
        grid-template-columns: 1fr;
    }
}


/* Logo Bölümü Stilleri */

.company-logo-section {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    text-align: center;
}

.logo-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 16px;
    background: #f8fafc;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.3s ease;
}


/* Logo Overlay Styles */

.logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.logo-wrapper:hover .logo-overlay {
    opacity: 1;
}

.logo-wrapper:hover img {
    transform: scale(1.05);
}

.logo-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.logo-action-btn i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.logo-action-btn span {
    font-size: 0.9rem;
    font-weight: 500;
}

.logo-action-btn:hover {
    color: white;
    transform: scale(1.1);
}

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

.logo-action-btn.upload:hover {
    color: #4f46e5;
}

.upload-hint {
    font-size: 0.875rem;
    color: #64748b;
}


/* Responsive Tasarım */

@media (max-width: 768px) {
    .logo-wrapper {
        width: 150px;
        height: 150px;
    }
    .logo-action-btn i {
        font-size: 1.5rem;
    }
    .logo-action-btn span {
        font-size: 0.8rem;
    }
}