﻿<style >
.flat-tabs {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.box-tab {
    margin-bottom: 20px;
}

.menu-tab {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.item-title {
    width: 220px; /* Orijinal boyut */
    height: 60px; /* Orijinal boyut */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ccc;
    border-radius: 10px;
    background-color: #f7f7f7;
    cursor: pointer;
    transition: 0.3s;
}

    .item-title.active {
        background-color: #007bff;
        color: white;
        border-color: #007bff;
    }

    .item-title:hover {
        background-color: #007bff;
        color: white;
    }

.wd-find-select {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.form-group {
    flex: 1 1 calc(50% - 15px);
    min-width: 220px;
}

.form-field {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.sc-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    min-width: 220px; /* Orijinal buton boyutu sabit */
}

    .sc-button:hover {
        background-color: #0056b3;
    }

@media (max-width: 768px) {
    .menu-tab {
        flex-direction: column;
        align-items: center;
    }

    .wd-find-select {
        flex-direction: column;
        gap: 10px;
        padding: 0 10px;
    }

    .form-group {
        width: 100%;
        min-width: unset;
    }

    .form-field {
        font-size: 15px;
    }

    .sc-button {
        width: 100%; /* Mobilde buton tam genişlik */
        min-width: unset; /* Orijinal sabit genişlik kaldırıldı */
        font-size: 15px;
        padding: 12px;
    }
}

</style >
