/* mob-account.css - Tablet ve Mobil için Optimize Edilmiş CSS */

/* Temel stiller (her ekran için) */
.mob-menu-select {
    display: block !important;
    /* Zorunlu görünür kıl */
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    color: #333;
    /* Metin rengi ekle */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23333" d="M10.293 3.293 6 7.586 1.707 3.293A1 1 0 0 0 .293 4.707l5 5a.997.997 0 0 0 1.414 0l5-5a1 1 0 1 0-1.414-1.414z"/></svg>');
    /* Custom arrow ekle */
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px;
    -webkit-appearance: none;
    /* Sadece webkit için none, diğer tarayıcılarda varsayılanı koru */
    -moz-appearance: none;
}

.mob-menu-select option {
    background-color: #fff;
    /* Option arka plan */
    color: #333;
    /* Option metin rengi */
    padding: 10px;
    /* Option padding */
}

.mob-settings-sidebar {
    width: 100%;
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Tablet ve Küçük Ekranlar İçin (Max 1280px) */
@media only screen and (max-width: 1280px) {

    /* Genel Layout */
    .mob-account-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 15px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 220px;
    }

    /* Mobil Menü Dropdown */
    .mob-settings-sidebar {
        width: 100%;
        background-color: #fff;
        padding: 15px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .mob-menu-select {
        width: 100%;
        padding: 12px;
        font-size: 18px;
        border: 1px solid #ddd;
        border-radius: 5px;
        background-color: #fff;
        cursor: pointer;
        color: #333;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23333" d="M10.293 3.293 6 7.586 1.707 3.293A1 1 0 0 0 .293 4.707l5 5a.997.997 0 0 0 1.414 0l5-5a1 1 0 1 0-1.414-1.414z"/></svg>');
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 12px;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    .mob-menu-select option {
        background-color: #fff;
        color: #333;
        padding: 10px;
    }

    .mob-commercial-account {
        display: block;
        margin-top: 15px;
        padding: 12px;
        text-align: center;
        color: #007782;
        background: #f4f4f4;
        border: 1px solid #ddd;
        border-radius: 5px;
        text-decoration: none;
        font-size: 18px;
    }

    .mob-commercial-account:hover {
        background: #007782;
        color: #fff;
    }

    /* Sağ İçerik */
    .mob-settings-content {
        padding: 15px;
        background-color: #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    /* Profil Başlığı */
    .mob-profile-heading {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        font-size: 18px;
    }

    .mob-profile-text {
        font-size: 20px;
        color: #333;
    }

    .mob-individual-text {
        font-size: 16px;
        color: #007782;
        border: 1px solid #007782;
        padding: 6px 12px;
        border-radius: 5px;
    }

    /* Profil Resmi */
    .mob-profile-image-container {
        text-align: center;
        margin-bottom: 20px;
    }

    .mob-profile-pic {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #ddd;
    }

    .mob-profile-change-label {
        display: block;
        margin-top: 12px;
        color: #007782;
        text-decoration: underline;
        cursor: pointer;
        font-size: 16px;
    }

    .mob-user-name {
        margin-top: 12px;
        font-size: 18px;
        color: #333;
    }

    /* Konum Seçimi */
    .mob-act-result {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        background: #f4f4f4;
        border-radius: 5px;
        margin-bottom: 15px;
    }

    .mob-act-change-button {
        background: #007782;
        color: #fff;
        border: none;
        padding: 8px 15px;
        border-radius: 5px;
        cursor: pointer;
    }

    .mob-act-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: none;
        align-items: center;
        justify-content: center;
    }

    .mob-act-modal-content {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        width: 90%;
        max-width: 500px;
        text-align: center;
    }

    .mob-act-close-modal {
        float: right;
        cursor: pointer;
        font-size: 24px;
    }

    .mob-act-form-group {
        margin-bottom: 15px;
    }

    .mob-act-form-group select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

    .mob-act-all-turkey-link {
        display: block;
        margin: 10px 0;
        color: #007782;
        text-decoration: underline;
    }

    .mob-act-submit-button {
        background: #007782;
        color: #fff;
        border: none;
        padding: 10px;
        width: 100%;
        border-radius: 5px;
        cursor: pointer;
    }

    /* Telefon Doğrulama */
    .mob-phone-verification-section {
        margin-bottom: 20px;
    }

    .mob-phone-input-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
        border: 1px solid #ccc;
        border-radius: 6px;
        padding: 10px;
        background-color: #f8f9fa;
    }

    .mob-flag-icon {
        width: 24px;
        height: 16px;
    }

    .mob-phone-code {
        font-weight: bold;
    }

    .mob-verification-button {
        width: 100%;
        padding: 12px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        margin-top: 15px;
    }

    .mob-verification-button:hover {
        background-color: #0056b3;
    }

    /* Güncelle Butonu */
    .mob-update-button {
        width: 100%;
        padding: 12px;
        background-color: #007782;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 18px;
    }

    .mob-update-button:hover {
        background-color: #006680;
    }

    /* Alert Stilleri */
    .mob-custom-alert {
        padding: 15px;
        border-radius: 5px;
        margin-bottom: 20px;
        text-align: center;
        font-size: 16px;
    }

    .mob-custom-alert-success {
        background-color: #d4edda;
        color: #155724;
    }

    .mob-custom-alert-danger {
        background-color: #f8d7da;
        color: #721c24;
    }

    /* Diğer Ortak Stiller */
    .mob-close-alert {
        float: right;
        cursor: pointer;
        font-size: 20px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .mob-account-container {
        margin-top: 240px !important;
    }


}


/* Mobil Cihazlar İçin (Max 480px) */
@media (max-width: 480px) {


    /* Genel Layout */
    .mob-account-container {
        padding: 10px;
        gap: 15px;
        margin-top: 25px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }



    /* Mobil Menü Dropdown */
    .mob-settings-sidebar {
        padding: 10px;
    }

    .mob-menu-select {
        padding: 10px;
        font-size: 16px;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 12 12"><path fill="%23333" d="M10.293 3.293 6 7.586 1.707 3.293A1 1 0 0 0 .293 4.707l5 5a.997.997 0 0 0 1.414 0l5-5a1 1 0 1 0-1.414-1.414z"/></svg>');
        background-position: right 10px center;
        background-size: 10px;
    }

    .mob-menu-select option {
        font-size: 16px;
        padding: 8px;
    }

    .mob-commercial-account {
        padding: 10px;
        font-size: 16px;
        margin-top: 10px;
    }

    /* Sağ İçerik - Genişletildi ve hizalandı */
    .settings-content2d {
        width: 100%;
        max-width: 100%;
        padding: 12px;
        box-sizing: border-box;
    }

    /* Sol Menü - Mobilde gizle (isteğe bağlı) */
    .settings-sidebar12 {
        display: none;
    }

    /* Kart yapısı */
    .settings-section23ds {
        background-color: #fff;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    /* Checkbox kutuları arası boşluk */
    .notification-category12 {
        margin-bottom: 15px;
    }

    .toggle-wrapper2edd label {
        font-size: 15px;
        font-weight: 500;
    }

    /* Profil Başlığı */
    .mob-profile-heading {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
        font-size: 16px;
    }

    .mob-profile-text {
        font-size: 18px;
    }

    .mob-individual-text {
        font-size: 14px;
        padding: 5px 10px;
        margin-top: 10px;
    }

    /* Profil Resmi */
    .mob-profile-pic {
        width: 100px;
        height: 100px;
    }

    .mob-profile-change-label {
        font-size: 14px;
        margin-top: 10px;
    }

    .mob-user-name {
        font-size: 16px;
        margin-top: 10px;
    }

    /* Konum Seçimi */
    .mob-act-result {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .mob-act-change-button {
        width: 100%;
        margin-top: 10px;
        padding: 10px;
    }

    .mob-act-modal-content {
        width: 95%;
        padding: 15px;
    }

    .mob-act-form-group select {
        padding: 8px;
    }

    .mob-act-submit-button {
        padding: 8px;
        font-size: 16px;
    }

    /* Telefon Doğrulama */
    .mob-phone-input-wrapper {
        padding: 8px;
        gap: 8px;
    }

    .mob-flag-icon {
        width: 20px;
        height: 14px;
    }

    .mob-verification-button {
        padding: 10px;
        font-size: 16px;
        margin-top: 10px;
    }

    /* Güncelle Butonu */
    .mob-update-button {
        padding: 10px;
        font-size: 16px;
    }

    /* Alert Stilleri */
    .mob-custom-alert {
        padding: 12px;
        font-size: 14px;
        margin-bottom: 15px;
    }

    .mob-close-alert {
        font-size: 18px;
    }
}