﻿/* === Loading görünümü === */
.loading-container {
    text-align: center;
    margin-top: 3rem;
    animation: fadeIn 0.3s ease-in;
}

.loading-text {
    /*color: var(--bs-secondary-color, #6c757d);*/
    margin-top: 0.95rem;
    font-size: 1.2rem;
}

/* === Boş bildirim kartı === */
.no-notification-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*background-color: var(--dx-background-color, #f9fafb);*/
    border: 1px dashed var(--dx-border-color, #d1d5db);
    border-radius: 1rem;
    padding: 2.5rem 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.2s ease-in-out;
}

    .no-notification-card:hover {
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    .no-notification-card .icon {
        font-size: 3rem;
        color: var(--bs-info, #0ea5e9);
        margin-bottom: 1rem;
    }

    .no-notification-card .text h5 {
        font-weight: 600;
        /*color: var(--bs-body-color, #111827);*/
    }

    .no-notification-card .text p {
        font-size: 0.95rem;
        /*color: var(--bs-secondary-color, #6b7280);*/
        margin-top: 0.5rem;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
