/* Başlık */
.neb-title {
    text-align: center;
    color: #b80000;
    font-size: 19px;
    font-weight: 700;
    margin: 25px auto 10px;
    line-height: 1.3;
    width: 100%;
    max-width: 900px;
    padding: 8px 15px;
    border-bottom: 2px solid #b80000;
}

/* Bilgilendirme yazısı */
.neb-info {
    text-align: center;
    color: #333;
    font-size: 16px;
    font-weight: 400;
    margin: 5px auto 15px;
    line-height: 1.4;
    width: 100%;
    max-width: 900px;
    padding: 0 15px;
}

/* Yenileme butonu */
.neb-refresh-btn {
    display: block;
    margin: 15px auto;
    padding: 10px 20px;
    background: #b80000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.3s ease;
}

.neb-refresh-btn:hover {
    background: #900000;
}

/* Yükleme animasyonu */
.neb-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #b80000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Ana kapsayıcı */
.nobetci-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px 30px 15px;
}

/* Grid - tek sütun */
#nobetci-eczaneler-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 10px;
}

/* Kart */
.neb-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    padding: 20px 22px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-top: 5px solid #b80000;
}

.neb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Logo ve başlık */
.neb-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.neb-logo {
    width: 46px;
    height: 46px;
    background-image: url('https://ideacdn.net/idea/dt/29/myassets/products/279/eczane-e-logo-led-tabelasi.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    border: 2px solid #b80000;
}

.neb-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
}

/* Bilgiler */
.neb-card p {
    margin: 6px 0;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.neb-card p strong {
    display: inline-block;
    min-width: 85px;
    color: #000;
    font-weight: 700;
}

/* Link */
.neb-card a {
    color: #0066cc;
    text-decoration: underline;
}

.neb-card a:hover {
    color: #004a99;
    text-decoration: none;
}

/* Mobil uyumluluk */
@media (max-width: 600px) {
    .neb-title {
        font-size: 17px;
    }
    .neb-info {
        font-size: 14px;
    }
    .neb-refresh-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
    .neb-spinner {
        width: 24px;
        height: 24px;
    }
    .neb-card {
        padding: 16px;
    }
    .neb-header h3 {
        font-size: 16px;
    }
    .neb-card p {
        font-size: 14px;
    }
}