body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

.menu-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Menü Kartı Stili */
.menu-box {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: left;
    transition: transform 0.2s, border-color 0.2s;
    position: relative;
}

.menu-box:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #e9ecef, #f8f9fa);
    border-color: #c9302c;
}

/* Bugünün Menüsü Vurgusu */
.menu-box.highlight {
    border: 3px solid #d9534f; /* Kırmızı Çerçeve */
    box-shadow: 0 4px 10px rgba(217, 83, 79, 0.5);
    background: linear-gradient(135deg, #f8d7da, #f5c6cb); /* Hafif kırmızı tonlar */
}

/* "Bugünün Menüsü" Etiketi (Sağa Yaslandı) */
.menu-box.highlight::before {
    content: "Bugünün Menüsü";
    position: absolute;
    top: 5px;
    right: 5px;
    background: #d9534f;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 5px;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    white-space: nowrap;
}

/* Tarih Stili */
.menu-box h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #a70000; /* Kırmızı */
    font-weight: bold;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

/* Bugünün Menüsündeki Tarih Çizgisi */
.menu-box.highlight h3 {
    border-bottom: 2px solid #000; /* Siyah çizgi */
}

/* Menü İçeriği */
.menu-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Menü Öğeleri */
.menu-box ul li {
    font-size: 16px;
    margin: 5px 0;
    color: #555;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd; /* İnce gri çizgi */
}

/* Bugünün Menüsündeki Çizgiler Siyah */
.menu-box.highlight ul li {
    border-bottom: 1px solid #000;
}

/* Son Satırın Çizgisi Olmasın */
.menu-box ul li:last-child {
    border-bottom: none;
}

/* Mobil Uyum */
@media (max-width: 600px) {
    .menu-container {
        grid-template-columns: 1fr;
    }

    .menu-box.highlight::before {
        font-size: 12px;
        padding: 5px 10px;
        top: 5px;
        right: 5px;
    }
}
