﻿.system-logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%; /* Genişliği yüzde 100 yapar */
    margin: 20px 0;
    padding: 6px;
    background-color: aliceblue;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.system-logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
}

.system-logo-modern {
    color: #2c3e50; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

    .system-logo-modern .system-highlight {
        color: #e74c3c;
    }

.system-logo-tech {
    background: linear-gradient(45deg, #3498db, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.app-sidebar-logo img {
    margin-right: 10px;
} 
.drag-handle {
    cursor: move;
}

.ui-sortable-placeholder {
    background: #f0f0f0;
    visibility: visible !important;
} 
.custom-file-upload-group {
    font-family: Arial, sans-serif;
    margin-bottom: 1rem;
}

.input-group-text.file-label {
    cursor: pointer;
}

.file-icon {
    margin-right: 0.5rem;
}

.file-name {
    background-color: #fff;
}

.file-selected {
    background-color: #e6f7ff;
    border-color: #91d5ff;
}

.btn.file-remove {
    padding: 0;
    border: none;
    background: none;
}

.remove-icon {
    font-size: 0.875rem;
}


#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.7); /* Saydam beyaz arka plan */
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;
    animation: spin 2s linear infinite;
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #e74c3c;
        animation: spin 3s linear infinite;
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #f9c922;
        animation: spin 1.5s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loaded #loader-wrapper {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-out;
}



.preloader {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
}

    .preloader::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 40px;
        height: 40px;
        margin: -20px 0 0 -20px;
        border: 4px solid #f3f3f3;
        border-top: 4px solid #3498db;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.loading-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 3px solid #3498db;
    animation: spin 1s linear infinite;
}
.custom-popover {
    max-width: 600px;
    width: max-content;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
}

    .custom-popover .popover-body {
        padding: 0;
    }

    .custom-popover .popover-arrow {
        display: block !important;
    }

        .custom-popover .popover-arrow::before {
            border-bottom-color: rgba(0,0,0,0.1);
        }

        .custom-popover .popover-arrow::after {
            border-bottom-color: #ffffff;
        }

.custom-popover-content {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
}

.custom-popover img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.custom-popover h6 {
    color: #333;
    margin-bottom: 2px;
    font-size: 12px;
}

.custom-popover p {
    color: #666;
    margin-bottom: 2px;
    font-size: 12px;
}

.custom-popover .text-muted {
    color: #888 !important;
}

.custom-popover .fas {
    color: #007bff;
    width: 15px;
    font-size: 12px;
}

.custom-popover .section {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
}

.custom-loader {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ant-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Değiştirildi: center -> flex-start */
    padding-top: 20vh; /* Eklendi: Üstten boşluk bırakmak için */
}

.ant-loader-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ant-loader-text {
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.ant-loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: ant-spin 1s linear infinite;
}

@keyframes ant-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.sdg-container {
    padding: 1rem;
}

.sdg-title {
    margin-bottom: 1rem;
    font-weight: bold;
}

.sdg-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.image-link {
    position: relative;
    display: inline-block;
    /* Eklenen padding ile badge'in taşması için alan sağlıyoruz */
    padding: 8px;
    /* Negatif margin ile padding'in yarattığı boşluğu dengeliyoruz */
    margin: -8px;
}

    .image-link img {
        width: 80px;
        height: 80px;
        border-radius: 8px;
        display: block; /* Resim altındaki boşluğu kaldırır */
    }

.counter-badge { 
    position: absolute;
    bottom: 2px;
    right: 0;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    min-width: 30px; /* Minimum genişlik garantisi */
    height: 30px;
    padding: 0 6px; /* Sayı büyüdükçe badge genişleyebilir */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 1; /* Badge'in resmin üzerinde görünmesini sağlar */
}

.image-link:hover {
    text-decoration: none;
}

    .image-link:hover .counter-badge {
        transform: scale(1.1);
        transition: transform 0.2s ease;
    }

/* İki basamaklı sayılar için badge'i otomatik genişletme */
 

.image-link {
    display: inline-block;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .image-link img {
        width: 100px;
        height: auto;
        display: block;
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    .image-link:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

        .image-link:hover img {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

@media (max-width: 768px) {
    .sdg-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .image-link img {
        width: 60px;
    }
}

 
/* Bu modalın başlık alanı (header) için */
.basvuru-ayarlari-modal .modal-header {
    padding-top: 6px;
    padding-bottom: 6px;
    min-height: 44px; /* Sabit yükseklik */
    align-items: center; /* İçeriği dikeyde ortala */
}

/* Bu modalın alt buton alanı (footer) için */
.basvuru-ayarlari-modal .modal-footer {
    padding-top: 6px;
    padding-bottom: 6px;
    min-height: 48px;
    display: flex;
    align-items: center; /* Dikey ortalama */
    justify-content: flex-end; /* Butonları sağa yasla */
}
 

 