/* mob-ilan-ekle.css */

/* Genel stiller (mobil ve tablet için temel ayarlar) */
@media only screen and (max-width: 1280px) {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Helvetica', sans-serif;
        background-color: #e0f7fa;
        color: #1a3c3c;
        line-height: 1.5;
    }

    .mob-wrapper {
        max-width: 100%;
        margin: 0 auto;
        padding: 5px;
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .mob-brand {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .mob-brand img {
        height: 41.25px;
        /* %25 küçültme (55px * 0.75) */
        width: auto;
    }

    .mob-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 2px solid #1a3c3c;
    }

    .mob-back {
        color: #1a3c3c;
        text-decoration: none;
        font-size: 20px;
    }

    .mob-title {
        font-size: 20px;
        font-weight: 600;
        color: #1a3c3c;
    }

    .mob-step {
        font-size: 14px;
        color: #666;
    }

    .mob-section {
        margin: 15px 0;
        padding: 15px;
        background-color: #f0f9fb;
        border-radius: 8px;
    }

    .mob-section h3 {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 10px;
        color: #1a3c3c;
    }

    .mob-input {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #b3e0e5;
        border-radius: 6px;
        font-size: 14px;
        background-color: #ffffff;
    }

    .mob-textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #b3e0e5;
        border-radius: 6px;
        font-size: 14px;
        min-height: 100px;
        resize: vertical;
    }

    .mob-select {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #b3e0e5;
        border-radius: 6px;
        font-size: 14px;
        background-color: #ffffff;
    }

    .mob-submit {
        width: 100%;
        padding: 12px;
        background-color: #1a3c3c;
        color: white;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        cursor: pointer;
        margin-top: 10px;
    }

    .mob-submit:hover {
        background-color: #123333;
    }

    .mob-photo-upload-area {
        margin: 15px 0;
    }

    .mob-photo-upload-btn {
        display: inline-flex;
        align-items: center;
        gap: 6.4px;
        /* %20 küçültme (8px * 0.8) */
        padding: 4px 6.4px;
        /* %20 küçültme (5px 8px * 0.8) */
        background-color: #1a3c3c;
        color: white;
        border-radius: 4px;
        cursor: pointer;
        font-size: 12.8px;
        /* %20 küçültme (16px * 0.8) */
        width: 120px;
        /* %20 küçültme (150px * 0.8) */
        text-align: center;
    }

    .mob-photo-upload-btn:hover {
        background-color: #123333;
    }

    .mob-photo-preview {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* 3 sütun */
        gap: 8px;
        margin-top: 10px;
    }

    .mob-photo-item img {
        width: 44px !important;
        /* %20 küçültme (55px * 0.8) */
        height: 44px !important;
        /* %20 küçültme (55px * 0.8) */
        object-fit: cover;
        border-radius: 4px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .mob-photo-item {
        position: relative;
        width: 44px;
        height: 44px;
    }

    .mob-photo-remove-btn {
        position: absolute;
        top: -4px;
        /* %20 küçültme (-5px * 0.8) */
        right: -4px;
        /* %20 küçültme (-5px * 0.8) */
        background-color: #ff4444;
        color: white;
        width: 12px;
        /* %20 küçültme (15px * 0.8) */
        height: 12px;
        /* %20 küçültme (15px * 0.8) */
        border-radius: 50%;
        text-align: center;
        line-height: 12px;
        /* %20 küçültme (15px * 0.8) */
        cursor: pointer;
    }

    .mob-photo-remove-btn:hover {
        background-color: #cc0000;
    }

    .mob-photo-count {
        font-size: 12px;
        color: #666;
        margin-top: 5px;
    }

    /* Konum Modal */
    .mob-location-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .mob-modal-content {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        width: 90%;
        max-width: 350px;
        position: relative;
        overflow-y: auto;
        max-height: 80vh;
    }

    .mob-modal-close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
        color: #1a3c3c;
    }

    .mob-modal-form-group select {
        width: 100%;
        padding: 10px;
        margin-bottom: 10px;
        border: 1px solid #b3e0e5;
        border-radius: 6px;
        font-size: 14px;
    }

    .mob-modal-save-btn {
        padding: 10px;
        background-color: #1a3c3c;
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        width: 100%;
    }

    .mob-modal-save-btn:hover {
        background-color: #123333;
    }

    .mob-modal-all-turkey {
        display: block;
        text-align: center;
        margin: 10px 0;
        color: #1a3c3c;
        text-decoration: none;
    }


    .mob-modal-all-turkey:hover {
        text-decoration: underline;
    }

    .ql-editor {
        min-height: 300px !important;
        max-height: 3300px !important;
        padding: 10px !important;
        background-color: #fff;
    }

    .container-gonder2536 {
        width: 100%;
        box-sizing: border-box;
        margin-top: 20px;
        padding-bottom: 90px;
        /* altı boş bırak */
    }



}

/* Ekstra: Küçük ekranlar (mobil) için özel ayarlar */
@media only screen and (max-width: 480px) {

    .mob-input,
    .mob-textarea,
    .mob-select {
        font-size: 13px;
        padding: 8px;
    }

    .blm-baslik {
        font-size: 1rem;
        color: #333;
        font-weight: normal;
        margin-bottom: 8px;
    }

    main {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
        margin-top: 78px;
    }

    .ql-editor {
        min-height: 300px !important;
        max-height: 3300px !important;
        padding: 10px !important;
        background-color: #fff;
    }


    .container2536 {
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        border-radius: 0;
    }



    .mob-title {
        font-size: 18px;
    }

    .mob-photo-preview {
        gap: 6px;
    }

    .mob-photo-item img {
        width: 40px !important;
        height: 40px !important;
    }

    .mob-photo-remove-btn {
        top: -3px;
        right: -3px;
        width: 10px;
        height: 10px;
        line-height: 10px;
    }



}