.kategori-container {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 16px;
}

.dropdown-style {
    padding: 8px 16px;
    font-size: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-left: 10px;
}

/* Menü kutuları */
.menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.menu-box {
    width: 140px;
    height: 160px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    background-color: #f5f5f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    padding: 10px;
}

.menu-box img {
    width: 60px;
    height: 60px;
    margin-top: 10px;
}

.menu-box span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

.menu-box:hover,
.menu-box:active {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background-color: #e9f0ff;
}
