﻿/* Sadece no-result alanını etkiler */
.no-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Üst hizalama */
    text-align: center;
    width: 100%;
    margin: 0 auto;
    /*padding-top: 4vh;*/ /* ekran yüksekliğinin %8'i kadar yukarıdan boşluk bırak */
    padding-bottom: 4vh;
    box-sizing: border-box;
}

/* İç blok */
.no-result-container {
    max-width: 480px;
    width: 100%;
}

/* Görsel */
.no-result-icon {
    width: 60px;
    height: auto;
    margin: 0 auto 10px;
    display: block;
}

/* Başlık */
.no-result-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.75rem;
}

/* Açıklama */
.no-result-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .no-result {
        padding-bottom: 4vh;
    }

    .no-result-icon {
        width: 60px;
    }

    .no-result-title {
        font-size: 16px;
    }

    .no-result-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .no-result {
        padding-bottom: 4vh;
    }

    .no-result-icon {
        width: 60px;
    }

    .no-result-title {
        font-size: 14px;
    }

    .no-result-text {
        font-size: 12px;
    }
}
