body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #d4e6e6;
    color: #333;
    overflow-y: scroll;
}

a {
    text-decoration: none;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #1c2b2b;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9998;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
    margin-left: 10px;
}

.actions {
    display: flex;
    align-items: center;
}

.notification-icon {
    position: relative;
    margin-right: 20px;
    font-size: 35px;
    cursor: pointer;
}

.notification-icon a {
    color: #fff;
}

.has-notifications {
    content: '';
    position: absolute;
    top: 3px;
    right: 25px;
    width: 20px;
    height: 20px;
    background-color: red;
    border-radius: 50%;
    animation: pulse 1s infinite alternate;
    z-index: 9999;
    font-size: 15px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

@keyframes pulse {
    from {
        transform: scale(1);
        opacity: 1;
    }
    to {
        transform: scale(1.5);
        opacity: 0;
    }
}

.notification-window {
    position: fixed;
    right: 50px;
    top: 75px;
    width: 400px;
    height: auto;
    background-color: #fbfcf3;
    color: rgb(37, 37, 37);
    border: 1px solid #ccc;
    padding: 15px;
    z-index: 9999;
    display: none;
}

.notification-window::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 59%;
    transform: translateX(-50%);
    border-width: 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent #ccc;
}

.notification-window.visible {
    display: block;
}

.profile-edit {
    margin-top: 10px;
}

.cikis {
    margin-top: 10px;
}

.logout-btn {
    background-color: #6c9292;
    padding: 10px 16px;
    border: solid 1px #618a8a;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-right: 50px;
    display: none;
}

.logout-btn a {
    color: white;
    text-decoration: none;
}

.logout-btn:hover {
    background-color: #466e6e;
}

.profile-options {
    display: none;
    position: absolute;
    background-color: #bbd6d6;
    border: 1px solid #2b4646;
    padding: 20px;
    border-radius: 5px;
    margin-left: -80px;
    z-index: 9999;
    color: #fff;
}

.profile-options a {
    color: #2b4646;
}

.profile-options a:hover {
    color: #111f1f;
}

.header_profil_fotosu:hover .profile-options {
    display: block;
}

.mobile-header {
    display: none;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #1c2b2b;
    color: #fff;
    padding: 10px;
    z-index: 9998;
    flex-direction: column;
    justify-content: center;
}

.mobile-logo {
    margin: 0;
    font-size: 20px;
}

.mobile-menu-toggle {
    font-size: 25px;
    cursor: pointer;
}

.mobile_header_profil_fotosu img {
    margin-right: 20px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-logo-bar {
    display: flex;
    justify-content:space-between;
    align-items: center;
}

.mobile-menu {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;
    transition: visibility 0.3s, height 0.3s ease-in-out;
}

.mobile-mesaj-profil-cikis {
    display: flex;
    flex-direction: row;
    margin-right: 20px;
}

.mobile-header .mobile-menu a {
    color: #fff;
    text-decoration: none;
    padding: 15px;
    font-size: 25px;
}

.mobile-header .mobile-menu a:hover {
    background-color: #2b4646;
}

.mobile-header .mobile-menu.expanded {
    visibility: visible;
    height: auto;
    overflow: visible;
}

.sidebar {
    position: fixed;
    display: flex;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #1c2b2b;
    color: #fff;
    justify-content: space-between;
    align-items: center;
    z-index: 9998;
}

.mobile-sidebar {
    display: none;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #1c2b2b;
    color: #fff;
    justify-content: space-between;
    align-items: center;
    z-index: 9998;
}

.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.menu ul li {
    border-right: 1px solid #618a8a;
}

.menu ul li:last-child {
    border-bottom: none;
}

.menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s;
    display: block;
    padding: 20px;
}

.menu ul li a:hover {
    color: #f7f7f7;
    background-color: #2d4242;
}

.menu ul li.active > a {
    color: #f7f7f7;
    background-color: #0f1a1a;
    font-weight: 700;
}

.submenu {
    display: none;
}

.submenu > li > a {
    text-decoration: none !important;
    color: #1c2b2b !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: color 0.3s !important;
    display: block !important;
    padding: 15px 0 !important;
    padding-left: 50px !important;
    background-color: #f7f7f7 !important;
}

.submenu > li > a:hover {
    color: #f7f7f7 !important;
    background-image: linear-gradient(to right, #1c2b2b 10%, #291d0b 10%) !important;
}

.menu ul li.active .submenu {
    display: block;
}

.note-toolbar{
    background-color: #294646 !important;
}

.note-toolbar .btn-group {
    display: inline-flex !important;
    margin-right: 5px;
}

.btn {
    border: 1px solid #182c2c  !important;
    max-height: 30px !important;
    background-color: #c1dada !important;
    color: #182b2b !important;
}

.btn:hover {
    background-color: #496d6d !important;
    color: #dbe7e7 !important;
}

.gonder {
    display: flex;
    justify-content: center;
    padding: 15px 20px;
    background-color: #496e6e;
    color: #fff;
    border: 0;
    cursor: pointer;
    margin-top: 10px;
}

.mesajlar-baslik {
    display: flex;
    flex-direction: row;
    width: 100%;
    color: #fff;
}

.kimden {
width: 35%;
padding: 10px 0;
padding-left: 20px;
background-color:#355c5c;
border-top-left-radius: 8px;
}

.konu {
width: 65%;
padding: 10px 0;
padding-left: 20px;
background-color:#2b4e4e;
border-top-right-radius: 8px;
}

.mesajlar-icerik {
    display: flex;
    flex-direction: row;
    width: 100%;
    color: #181717;
}

.mesajlar-icerik-sol {
    display: flex;
    flex-direction: column;
    width: calc(35% + 10px);
    background-color: #f2f8f7;
    border-right: 1px solid #cbd8d6;
    border-bottom-left-radius: 8px;
}

.kimden-icerik {
padding: 10px 0;
padding-left: 20px;
background-color:#f2f8f7;
border-bottom: 1px solid #cbd8d6;
cursor:pointer;
}

.kimden-icerik:hover {
    background-color:#deebe9;
}

.kimden-icerik:active {
    background-color: #deebe9;
}

.kimden-tarih {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-right: 10px;
}

.mesaj-konusu {
    padding-top: 10px;
}

.mesaj-yok {
    width: 100%;
    background-color: #fff;
    padding:20px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.mesajlar-icerik-sag {
    display: flex;
    flex-direction: column;
    width: 65%;
    background-color:#fff;
    border-bottom-right-radius: 8px;
}

.mesaj-icerik {
padding: 10px 20px;
background-color:#fff;
min-height: 500px;
border-bottom-right-radius: 8px;
}

.mesaj-icerik-butonlar {
    display: flex;
    flex-direction: row;
    padding: 20px;
}

.mesaji-cevapla, .mesaji-sil, .mesaji-arsivle {
    display: flex;
    padding: 10px 15px;
    border: 1px solid #dee7e7;
    cursor: pointer;
    margin-right: 10px;
}

.mesaji-cevapla i, .mesaji-sil i, .mesaji-arsivle i {
    margin-right: 8px;
}

.mesaji-cevapla:hover, .mesaji-sil:hover, .mesaji-arsivle:hover {
    background-color: #ecf3f2;
}

.mesaj-menu {
    display: flex;
    flex-direction: row;
    margin: 10px 0;
}

.gelen-kutusu, .giden-kutusu, .cop-kutusu, .mesaj-arsiv {
    display: flex;
    padding: 10px 15px;
    background-color: #426363;
    cursor: pointer;
    border-radius: 8px;
    color: #fff;
    margin-right: 10px;
}

.gelen-kutusu a, .giden-kutusu a, .cop-kutusu a, .mesaj-arsiv a {
    color: #fff;
}

.gelen-kutusu:hover, .giden-kutusu:hover, .cop-kutusu:hover, .mesaj-arsiv:hover {
    background-color: #354e4e;
}

.mesaj-konu{
  margin-top: 20px;
  font-weight: 500;
}

.gonder:hover {
    background-color: #304d4d;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    font-weight: 500;
}

.public-container {
    display: flex;
    flex-direction: row;
    max-width: 800px;
    padding: 20px;
    font-weight: 500;
}

.public-foto-container {
    max-width: 150px;
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    width: auto;
    flex-direction: column;
    overflow: hidden;
    padding: 5px;
}

.public-foto img{
    width: 150px;
    height: 150px;
    display: flex;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    justify-content: center;
    align-items: center;
}

.online-agent {
    display: flex;
    background-color: #126616;
    color: #fff;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.offline-agent {
    display: flex;
    background-color: #661212;
    color: #fff;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.online_agent {
    display: flex;
    background-color: #239228;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-left: 5px;
    border: 1px solid #093d0c;
    position: relative;
}

.offline_agent {
    display: flex;
    background-color: #661212;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-left: 5px;
    border: 1px solid #3b0909;
    position: relative;
}

.online-text {
    position: absolute;
    top: -10px;
    left: 120%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .online_agent:hover .online-text {
    opacity: 1;
  }
  
  .offline_agent:hover .online-text {
    opacity: 1;
  }

.public-info-container {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    margin-left: 5px;
    justify-content: space-between;
    overflow: hidden;
}

.public-info-container i {
    padding-right: 7px;
    margin-top: 2px;
}

.public-isim {
    display: flex;
    padding: 10px 20px;
    color: #fff;
    background-color: #355353;
    font-size: 24px;
    font-weight: 600;
}

.public-mail {
    display: flex;
    padding: 0 20px;
}

.public-card{
    display: flex;
    padding: 0 20px;
}


.mesaj-gonder {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    background-color: #496e6e;
    color: #fff;
    cursor: pointer;
}

.mesaj-gonder:hover {
    background-color: #335050;
}

.musteriler_container {
    max-width: 1600px;
    margin: 120px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    font-weight: 500;
}

.temsilciler_container {
    max-width: 1600px;
    margin: 120px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    font-weight: 500;
}

.talepler_container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    font-weight: 500;
}

.ayarlar_container {
    max-width: 100%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    font-weight: 500;
}

.talep-ozeti-profil{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

.kartlar-sayfa {
    max-width: 1600px;
    margin: 100px auto;
    padding: 20px;
    font-weight: 500;
}

.formlar-sayfa {
    max-width: 100%;
    margin: 80px auto;
    padding: 20px;
    font-weight: 500;
}

.baslik-container {
    padding: 0;
}

.baslik-ac-kapa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #436b6b;
    border-radius: 8px;
    margin-bottom: 15px;
    color: #fff;
    padding: 20px;
}

.baslik-ac-kapa h2 {
    margin: 0;
    font-size: 1.5em;
    color: #fff;
}

.talepler-baslik {
    display: flex;
    align-items: center;
}

.tab-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tab {
    padding: 10px 20px;
    background-color: #81a7a7;
    cursor: pointer;
    border-radius: 8px;
    color: #fff;
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.tab.active {
    background-color: #5d8585;
}

.talep-ozet-container {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.talep-ozet-baslik {
    display: flex;
    justify-content: space-between;
    background-color: #435c5c;
    color: #fff;
    max-height: 60px;
    padding-right: 15px;
    align-items: center;
}

.talep-ozet-ikon-container {
    border-top-left-radius: 8px;
    background-color: #244444;
    font-size: 22px;
    color:#ffffff;
    overflow: hidden;
    max-height: 60px;
    width: auto;
    padding:0;
    margin-right:15px;
}

.talep-ozet-ikon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.talep-ozet-profil-temsilci {
    display: flex;
    justify-content: center;
    align-items: center;
    }

.talep-ozet-profil img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 3px;
}

.talep-ozet-temsilci a {
    color: #f5ff6e;
}

.talep-ozet-tarih {
    display: flex;
}

.talep-ozeti {
    display: flex;
    padding: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.talep-ozeti img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 3px;
}

.uyan_emlaklar {
    max-width: 1600px;
    margin: 0 auto;
    margin-bottom: 100px;
    padding: 20px;
    font-weight: 500;
    margin-top: -40px;
}

.emlaklari_goster {
display: flex;
background-color: #304415;
color: #fff;
cursor: pointer;
padding: 15px;
justify-content: center;
border-radius: 8px;
margin: 10px;
}

.emlaklari_goster:hover {
    background-color: #21310c;
}

.talep_detay_sayfa {
        max-width: 1600px;
        margin: 100px auto;
        padding: 20px;
        display: flex;
        font-weight: 500;
        flex-direction: column;
        margin-bottom: 10px;
}

.emlak_detay_sayfa {
    max-width: 1600px;
    margin: 100px auto;
    padding: 20px;
}

.ac-kapa,
.sirala {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.ac-kapa i {
    color: #c6d8d8;
    font-size: 16px;
    margin-right: 7px;
    margin-left: 10px;
    margin-top: 3px;
  }
  
  .ac-kapa label {
    display: inline-block;
    width: 30px;
    height: 15px;
    background-color: #e8f0f0;
    border-radius: 15px;
    position: relative;
    margin-top: 5px;
  }
  
  .ac-kapa label:before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #324242;
    border: none;
    border-radius: 50%;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
  }
    
  .ac-kapa input[type="checkbox"] {
    display: none;
  }
  
  .ac-kapa input[type="checkbox"]:checked + label {
    background-color: #9cb6b6;
  }
  
  .ac-kapa input[type="checkbox"]:checked + label:before {
    transform: translateX(15px);
    background-color: #500e12;
    border: none;
  }

  .kart-container {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.emlakkart_container {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: baseline;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.emlakkart_container.animation {
    opacity: 1;
    transform: translateY(20px);
    height: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.emlak_link {
    color: #173636;
}

.emlak_link:hover {
    color: #081616;
}

.talep-karti {
    width: calc(25% - 20px);
    background-color: #fff;
    border-radius: 8px;
    margin: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
}

.talep-karti.animation {
    transform: translateY(20px);
    opacity: 0;
}

.talep-karti.hidden {
    display: none;
}

.talep-buttonlari {
    border-radius: 8px;
    margin: 10px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.pasife-cevir {
    border-radius: 8px;
    background-color: #85322f;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 20px;
    color: #fff;
    cursor: pointer;
    margin-right: 20px;
    width: calc(50% - 50px);
    height: 140px;
}

.satis-tamamlandi {
    border-radius: 8px;
    background-color: rgb(160, 135, 24);
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 20px;
    color: #fff;
    cursor: pointer;
    margin-right: 20px;
    width: calc(50% - 50px);
    height: 140px;
}

.satis-tamamlandi:hover {
    background-color: rgb(107, 90, 15);
}

.satis-islemde {
    border-radius: 8px;
    background-color: #2f8549;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 20px;
    color: #fff;
    cursor: pointer;
    margin-right: 20px;
    width: calc(50% - 50px);
    height: 140px;
}

.satis-islemde:hover {
    background-color: #1d5e30;
}

.aktife-cevir {
    border-radius: 8px;
    background-color: #2f8549;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 20px;
    color: #fff;
    cursor: pointer;
    margin-right: 20px;
    width: calc(50% - 50px);
    height: 140px;
}

.pasife-cevir:hover {
    background-color: #692220;
}

.aktife-cevir:hover {
    background-color: #1d5f31;
}

.satisa-cevir {
    border-radius: 8px;
    background-color: #2f5b85;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 20px;
    color: #fff;
    cursor: pointer;
    width: calc(50% - 50px);
    height: 140px;
}

.satisi-iptal-et {
    border-radius: 8px;
    background-color: #852f2f;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 20px;
    color: #fff;
    cursor: pointer;
    width: calc(50% - 50px);
    height: 140px;
}

.satis-iptal-edilmis {
    border-radius: 8px;
    background-color: #852f2f;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 20px;
    color: #fff;
    width: calc(50% - 50px);
    height: 140px;
    margin-right: 20px;
}


.satisi-geri-al {
    border-radius: 8px;
    background-color: #2f6a85;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 20px;
    color: #fff;
    cursor: pointer;
    width: calc(50% - 50px);
    height: 140px;
}

.satisi-geri-al:hover {
    background-color: #1e4b5f;
}

.satisi-iptal-et:hover {
    background-color: #631e1e;
}

.satisa-cevir:hover {
    background-color: #21476b;
}

.satis-ikon {
 margin-right:10px;
 font-size: 24px;
}

.talep-karti-detay {
    background-color: #fff;
    border-radius: 8px;
    margin: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
    width: 100%;
}

.emlak-content {
    width: calc(100% - 40px);
    overflow: hidden;
}

.talep_detay_container-ana {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.talep_detay_container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
}

.emlak_detay_container-ana {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.talep_detay_dosyalar_container {
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    padding-top: 30px;
    background-color: #fff;
    margin: 10px;
    margin-top:-10px;
}

.dosyalar {
    padding: 20px;
    padding-bottom:0;
}

.dosyalar a{
    color:#095050;
}

.dosyalar a:hover{
    color:#032424;
}


.talep_detay_container-2 {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
}

.notlar-alani {
    background-color: #fff;
    border-radius: 8px;
    margin: 10px;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.tum-notlar {
    overflow-y: auto;
    max-height: 430px;
}

.tum-notlar::-webkit-scrollbar {
    width: 15px;
}

.tum-notlar::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

.tum-notlar::-webkit-scrollbar-thumb {
    background: #888; 
}

.tum-notlar::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

.notlar-baslik {
    display: flex;
    justify-content:space-between;
    background-color: #718888;
    color: #fff;
    font-weight: 600;
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.kart-baslik {
    display: flex;
    justify-content: space-between;
    background-color: #435c5c;
    max-height: 60px;
    color: #fff;
    border-radius: 8px 8px 0 0;
}

.kart-baslik-2 {
    display: flex;
    justify-content:space-between;
    background-color: #404d66;
    color: #fff;
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.kart-baslik-3 {
    display: flex;
    justify-content:space-between;
    background-color: #705a72;
    color: #fff;
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.kart-baslik-4 {
    display: flex;
    justify-content:space-between;
    background-color: #8f701c;
    color: #fff;
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.public_profil {
    color: #fff;
}

.public_profil:hover{
    color: #ebe5e5;
}

.public_profil_2 {
    color:#233b3b;
}

.public_profil_2:hover{
    color: #000000;
}

.musteri_adi_2 {
    padding: 20px;
    font-weight: 600;
}

.talep_detay_profil_foto img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    margin-left: 20px;
    margin-right: 8px;
}

.talepler_profil_foto img{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #f0f0f0;
    margin-right:8px;
    margin-top:2px;
}

.talep_detay_profil_foto_diger img{

    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #f0f0f0;
    margin-left: 20px;
    margin-right:8px;
    margin-top: 20px;
    

}

.talep_not_profil_foto img{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #f0f0f0;
    margin-right:5px;
}

.talep-temsilci {
    display: flex;
    font-size: 12px;
    align-items: center;
    margin-right: 10px;
}

.aktif-pasif {
    border-top-right-radius: 8px;
    background-color: #fff;
    font-weight: 400;
}

.musteri-talepleri {
    border-top-right-radius: 8px;
    padding: 20px;
    background-color: #2f4444;
    font-size: 18px;
    color: #fff;
}

.musteri-talepleri-profil-foto img {
    border-top-right-radius: 8px;
    background-color: #2f4444;
    font-size: 18px;
    color: #fff;
    overflow: hidden;
    max-height: 60px;
    width: auto;
    padding:0;
    margin:0;
}

.aktif-pasif-2 {
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #6c9292;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 20px;
    color: #fff;
    margin-top: 20px;
    cursor: pointer;

}

.aktif-pasif-3 {
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #697894;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 20px;
    color: #fff;
    margin-top: 20px;
    cursor: pointer;

}

.aktif-pasif-4 {
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #9b8750;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 20px;
    color: #fff;
    margin-top: 20px;
    cursor: pointer;

}

.aktif-pasif-4:hover {
    background-color: #947930;
}

.aktif-pasif-3:hover {
    background-color: #4c5a75;
}

.mesajlasma-alani {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
}


.chat-box {
    display: flex;
}

.not-box {
    display: flex;
    color: #fff;
    cursor: pointer;
    position: absolute;
    width: 600px;
    height: 82%;
}

.not-box textarea {
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    width: 100%;
    border:none;
    padding: 10px;
    background-color: #e5dee6;
    resize: none;
    font-size: 16px;
    outline: none;
    transition: background-color 0.3s;
}

.not-box textarea:focus {
    background-color: #e0e0e0;
}

.talep-link {
    color:#2a4949;
}

.talep-link:hover {
    color:#1b3131;
}

.not-ekle {
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #947c96;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 20px;
    color: #fff;
    margin-top: 20px;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(100% - 20px);
}

.not-ekle-2 {
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: #947c96;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    padding: 10px;
    color: #fff;
    cursor: pointer;
    position: absolute;
    bottom: 15px;
    width: 580px;
}

.not-ekle-2:hover {
    background-color: #816883;
}

.aktif-pasif-2:hover {
    background-color: #466e6e;
}

.not-ekle:hover {
    background-color: #816883;
}

.yesil-div {
    border-top-right-radius: 8px;
    padding: 20px;
    background-color: rgb(24, 160, 24);
}

.kirmizi-div {
    border-top-right-radius: 8px;
    padding: 20px;
    background-color: rgb(128, 24, 24);
}

.sari-div {
    border-top-right-radius: 8px;
    padding: 20px;
    background-color: rgb(160, 135, 24);
}

.yesil-div-2 {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 15px 20px;
    color: #fff;
    margin-top: 20px;
    background-color: rgb(24, 126, 24);
}

.aktife-cevir-ikon::before {
    font-family: 'Font Awesome 5 Free';
    content: '\f251';
    font-style: normal;
    padding-right: 7px;
    font-size: 18px;
}

.satis-tamamlandi-ikon::before {
    font-family: 'Font Awesome 5 Free';
    content: '\f058';
    font-style: normal;
    font-size: 23px;
}
  
  
.kirmizi-div-2 {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 15px 20px;
    color: #fff;
    margin-top: 20px;
    background-color: rgb(128, 24, 24);
}

.pasife-cevir-ikon::before {
    font-family: 'Font Awesome 5 Free';
    content: '\f253';
    font-style: normal;
    padding-right: 7px;
    font-size: 18px;
}

.satis-islemde-ikon::before {
    font-family: 'Font Awesome 5 Free';
    content: '\f021';
    font-style: normal;
    font-size: 20px;
}

.iptal-container {
    display: flex;
    justify-content: right;
}

.iptal-edilmis-satislar {
    color: #fff;
    background-color: #6b0821;
    padding: 10px;
    display: inline-block;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
}

.iptal-edilmis-satislar:hover {
    background-color: #530518;
}

.spinner {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

.kart-temsilci {
    display: flex;
    background-color: #edf3f3;
    padding: 10px 20px;
    font-weight: 500;
}

.icon-isim {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kart-icon-talep{
    margin-left: 20px;
    margin-right: 8px;
}

.icon-deger {
    display: flex;
    align-items: center;
    padding: 10px;
}

.kart-icon {
    margin-right: 10px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.kart-icon-10 {
    padding-right: 5px;
}

.kart-icon-11 {
    padding-left: 5px;
}

.kart-icon-3 {
    margin-left: 10px;
    width: 20px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.kart-icon-4 {
    margin-top: -2px;
    width: 25px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.ikon-tarih {
    display: flex;
    align-items: center;
}

.flag-background {
    display: inline-block;
    padding: 10px;
}

.istenen-tarih {
    padding-right: 15px;
}

.flag-background.flag-icon {
    background-size: cover;
    background-position: center;
}

.kart-icon-2 {
    padding-right: 10px;
    margin-top: 20px;
    margin-left: 20px;
    width: 20px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.kart-deger {
    font-weight: 500;
}

.aciklama {
    padding: 20px;
    font-weight: 500;
}

.kart-deger-3 {
    font-weight: 500;
}

.kart-deger-2 {
    margin-top: 20px;
    padding-top: 2px;
    font-weight: 500;
    display: flex;
}

.diger-temsilciler {
    display: flex;
}

.kart-ayak {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6c9292;
    font-weight: 600;
    font-size: 18px;
    border-radius: 0 0 8px 8px;
    padding: 15px 20px;
    color: #fff;
    text-decoration: none;
}

.kart-ayak-2 {
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    background-color: #6c9292;
    font-size: 18px;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 15px 20px;
    color: #fff;
    margin-top: 20px;
    cursor: pointer;
}

.kart-ayak:hover {
    background-color: #5b7a7a;
}

.kart-ayak-2:hover{
    background-color: #466e6e;
}


.asil-not-alani {
    padding: 20px;
    margin-left: 10px;
    margin-right: 10px;
    padding-bottom:0;
}

.asil-not {
    padding-bottom: 15px;
}

.chat-not {
    padding-top: 10px;
    padding-bottom: 15px;
}

.chat-not a{
    color:#336363;
}

.chat-not a:hover{
    color:#162525;
}

.tarafindan-yazildi {
    display: flex;
    justify-content: right;
    font-size: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #bbccd1;
}

.photo-name {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.icon-date {
    display: flex;
    flex-direction: row;
    align-items: center;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #273a3a;
}

.form_alani {
    font-weight: 700;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    background-color: #354d4d;
}

label {
    font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="password"],
input[type="submit"],
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

textarea {
    margin-bottom: 30px;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="file"] {
    margin-bottom: 30px;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="number"] {
    width: 100%;
}

input[type="submit"] {
    background-color: #095050;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
}

input[type="submit"]:hover {
    background-color: #0d7070;
}

.checkbox_yanyana {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.checkbox {
    display: flex;
    margin-right: 15px;
}

.mesaj {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
    animation: fadeOut 3s forwards;
}

.mesaj_login {
    position: fixed;
    top: 120px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
    animation: fadeOut 3s forwards;
}

.mesaj.basarili {
    background-color: #4caf50;
    color: white;
}

.mesaj.hata {
    background-color: #f44336;
    color: white;
}

.mesaj_login.basarili {
    background-color: #4caf50;
    color: white;
}

.mesaj_login.hata {
    background-color: #f44336;
    color: white;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    text-align: left;
    
}

th {
    background-color: #467c7c;
    color:#fff;
    font-weight: 500;
}

tbody tr {
    background-color: #d1e2e2;
}

tbody tr:nth-child(even) {
    background-color: #e1eeee;
}

tbody tr:hover {
    background-color: #b7cece;
}

.musteri.fa {
    font-size: 16px;
    margin-right: 5px;
  }

  .musteri.fa-edit {
    color: #1b5a5a;
    margin-right: 10px;
  }

  .musteri.fa-trash-alt {
    color: #dc3545;
  }
  
.ekle-button{
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 30px;
    background-color: #174b19;
    color:#fff;
    border-radius: 30%;
    cursor: pointer;
    z-index: 9999;
}

.hidden-button{
    position: fixed;
    bottom: 80px;
    left: 20px;
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 30px;
    background-color: #17324b;
    color:#fff;
    border-radius: 30%;
    cursor: pointer;
}

.ekle-button-kucuk{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 18px;
    background-color: #174b19;
    color:#fff;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.ekle-button-kucuk i{
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 28%;
    margin-left: 1px;
}

.ekle-button-kucuk:hover{
    background-color: #216123;
}

.ekle-button i{
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 28%;
}

.ekle-button:hover{
    background-color: #216123;
}

.hidden-button i{
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 28%;
}

.hidden-button:hover{
    background-color: #0f2235;
}

.login-container {
    max-width: 400px;
    margin: 100px auto;
    margin-top: 200px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.musteri_sec_ekle {
    display: flex;
}

.emlak_sec_ekle {
    display: flex;
}

.musteri_sec_alani {
    width: 50%
}

.emlak_sec_alani {
    width: 50%
}

.musteri_ekle_alani {
    margin-left: 15px;
}


.musteri_sonuc {
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px;
}

.secili_musteri {
    display: flex;
    margin-bottom: 20px;
}

.secili_emlak {
    display: flex;
    margin-bottom: 20px;
}

.secili {
    display: flex;
    background-color: #174b19;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    margin-left: 10px;
}

.secili-satisa-cevir {
    display: flex;
    background-color: #174b19;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    margin-left: 10px;
}

.sil {
    display: flex;
    background-color: #ad1f1f;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    align-items: center;
}

.secili_durum {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 20px;
}

.seciliDurum {
    background-color: #174b19;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.secili_tip {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 20px;
}

.seciliTip {
    background-color: #174b19;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.secili_oda {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 20px;
}

.seciliOda {
    background-color: #174b19;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.bolge_sonuc {
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px;
}

.secili_bolge {
    display: flex;
    flex-wrap: wrap;
}

.secili_b {
    display: flex;
    align-items: center;
    background-color: #174b19;
    color: #fff;
    padding: 0 15px;
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    text-align: center;
    margin-left: 10px;
    margin-bottom: 15px;
}

.sil_b {
    display: flex;
    align-items: center;
    background-color: #ad1f1f;
    height: 30px;
    color: #fff;
    padding: 0 8px;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    text-align: center;
    cursor: pointer;
    margin-left: 10px;
    margin-right: -20px;
}

.budget-inputs {
    display: flex;
    margin-bottom: 20px;
}

.butce_from {
    display: flex;
    width: 300px;
    padding-right: 50px;
}

.butce_to {
    display: flex;
    width: 300px;
}

.minmax {
    margin-right: 8px;
    font-weight: 500;
}

.budget-range {
    display: flex;
    margin-bottom: 30px;
}

.budget-range-slider {
    width: 100%;
    height: 15px;
    background:#9db9b9;
    outline: none;
    transition: opacity 0.2s;
    border-radius: 5px;
}

.budget-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: #095050;
    cursor: pointer;
    border: none;
}

.budget-range-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: #095050;
    cursor: pointer;
    border: none;
}

.dosya {
    display: flex;
}

.dosya_ekle {

    display: flex;
}

.ekli_dosya {
    display: flex;
    flex-wrap: wrap;
}

.temsilci_sonuc {
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px;
}

.secili_temsilci {
    display: flex;
    flex-wrap: wrap;
}

.secili_t {
    display: flex;
    align-items: center;
    background-color: #174b19;
    color: #fff;
    padding: 0 15px;
    border-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    text-align: center;
    margin-left: 10px;
    margin-bottom: 15px;
}

.sil_t {
    display: flex;
    align-items: center;
    background-color: #ad1f1f;
    height: 30px;
    color: #fff;
    padding: 0 8px;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    text-align: center;
    cursor: pointer;
    margin-left: 10px;
    margin-right: -20px;
}

.talep_durum {
    margin-bottom: 30px;
}


.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    max-width: 90%;
    height: 500px;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.modal-title {
    font-size: 20px;
    margin: 0;
}

.close-btn {
    cursor: pointer;
    background: none;
    border: none;
    font-size: 24px;
    color: #570c0c;
}

.close-btn:hover {
    color: #3b0808;
}

.musteri-karti-container {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.musteri-karti {
    width: calc(25% - 20px);
    background-color: #fff;
    border-radius: 8px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.musteri-kart-baslik {
    display: flex;
    justify-content:center;
    background-color: #435c5c;
    color: #fff;
    border-radius: 8px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 20px;
}

.musteri-kart-baslik i{
    padding-right: 5px;
}

.musteri-kart-baslik a{
    color: #fff;
}

.profil-container {
    display: flex;
    justify-content: center;
}

.profil-foto {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #f0f0f0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.profil-foto i {
    font-size: 40px;
    color: #555555;
}

.musteri-bilgileri {
    flex-grow: 1;
    padding: 20px;
    padding-bottom:0;
}

.isim {
    display: flex;
    justify-content: center;
    font-weight: 600;
    align-items: center;
}

.bilgi-satiri {
    margin-bottom: 20px;
}

.bilgi-etiketi {
    font-weight: 600;
}

.bilgi-degeri {
    margin-left: 5px;
}

.musteri-kart-alt {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.musteriyi-duzenle {
    background-color: #465f70;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 20px;
    color: #fff;
    cursor: pointer;
    width: 50%;
    border-bottom-left-radius: 8px;
    text-decoration: none;
}

.musteriyi-duzenle:hover {
    background-color: #304655;
}

.musteriyi-duzenle a {
    color: #fff;
}


.musteriyi-sil {
    background-color: #5e3333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    padding: 15px 20px;
    color: #fff;
    cursor: pointer;
    width: 50%;
    border-bottom-right-radius: 8px;
    text-decoration: none;
}

.musteriyi-sil:hover {
    background-color: #442222;
}

.musteriyi-sil a {
    color: #fff;
}

.emlak-resim {
    width: 100%;
    overflow: hidden;
}

.ilk-resim {
    transition: transform 0.3s ease;
}

.ilk-resim img {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    
}

.ilk-resim:hover {
    transform: scale(1.1);
    opacity: 0.5;
}

.slide-alani {
    background-color: #435c5c;
    border-radius: 8px;
    margin: 10px;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

.slideshow-container {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.mySlides {
    display: none;
}

.mySlides img {
    width: auto;
    height: 585px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 75px 15px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.dot-container {
    text-align: center;
    margin: 0 10px;
}

.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  margin-bottom: 15px;
}

.active, .dot:hover {
  background-color: #051111;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.pagination {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination a {
    color: #1a2e2e;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color 0.3s;
    border: 1px solid #1a2e2e;
    margin: 0 5px;
}

.pagination a.active {
    background-color: #2a4949;
    color: white;
}

.pagination a:hover:not(.active) {
    background-color: #2a4949;
    color: #fff;
}

.ekli_profil_fotosu_container {
    display: flex;
}

.ekli_profil_fotosu {
    margin-bottom: 20px;
}

.profil_foto_sil {
    display: flex;
    background-color: #661212;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-left: -15px;
    margin-top: -10px;
    font-weight: 600;
    border: 2px solid #270404;
    cursor: pointer;
}

.profil_foto_sil:hover {
    background-color: #380707;
}

.modal-2 {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .modal-content-2 {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
  }

.croparea {
    height: 500px;
    margin: 30px;
}

#cropConfirm {
    display: block;
    padding: 10px 20px;
    background-color: #2a4949;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#cropConfirm:hover {
    background-color: #1a3131;
}

.header_profil_fotosu img {
    margin-right: 40px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.language-selector {
    margin-top: 15px;
    margin-right: 25px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.kapat-modal {
    display: flex;
    justify-content: right;
}

.close {
    background-color: #661212;
    color: #fff;
    width: 30px;
    height: 30px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 25px;
}

.close:hover {
    background-color: #3b0808;
}

.ad-badge {
    display: flex;
}


.admin-badge {
    display: flex;
    align-items: center;
    position: relative;
}

.admin-badge img{
height: 40px;
margin-left: -15px;
}

.badge-text {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .admin-badge:hover .badge-text {
    opacity: 1;
  }

  .thumbnails {
    display: flex;
    flex-wrap: wrap;
    margin-top:15px;
  }

  .thumbnail {
    display: flex;
    padding: 5px;
    margin: 10px;
    background-color: #7aa1a1;
  }

  .thumbnail img{
    width: 200px;
    height: 150px;
  }

  .thumbnail_sil {
    display: flex;
    background-color: #661212;
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    margin-left: -30px;
    margin-top: -3px;
    font-weight: 600;
    border: 2px solid #270404;
    cursor: pointer;
}

.thumbnail_sil:hover {
    background-color: #380707;
}

.download-button, .pdf-share-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    color: #fff;
    background-color: #25d366;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.pdf-share-button {
    background-color: #ff0000;
}

.download-button {
    background-color: #007bff;
}

#submitForm:disabled {
    background-color: #dddddd;
    color: #777777;
    cursor: not-allowed;
}

.spinner {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #66a1a1;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


.talep_detay_sayfa {
    max-width: 1600px;
    margin: 100px auto;
    padding: 20px;
    display: flex;
    font-weight: 500;
    flex-direction: column;
    margin-bottom: 10px;
}

.talep_detay_container-ana {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.talep_detay_container {
    width: 40%;
    display: flex;
    flex-wrap: wrap;
}

.talep-karti-detay {
    background-color: #fff;
    border-radius: 8px;
    margin: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translateY(0);
    width: 100%;
}

.foto-isim {
    display: flex;
    align-items: center;
}

.musteri_adi {
    display: flex;
    flex-direction: row;
    padding: 20px 0;
    font-weight: 600;
}

.kart-tarih {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #edf3f3;
}

.emlak_detay_container-2, .emlak_detay_container {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
}

.mobil-emlak-dugmeleri {
    display: none;
}

@media (max-width: 1200px) {
    .talep_detay_container {
        width: 50%;
    }
    
    .talep_detay_container {
        width: 50%;
    }
    .kart-baslik-2 {
        display: flex;
        flex-direction: column;
        align-items: left;
    }

    .talep-temsilci {
        margin-left: 10px;
        margin-bottom: 10px
    }
    
    .emlak_detay_container-2, .emlak_detay_container {
        width: 100%;
    }

    .emlak-dugmeleri {
        display: none;
    }

    .mobil-emlak-dugmeleri {
        display: block;
    }

}

@media (max-width: 768px) {
    .header {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .sidebar {
        display: none;
    }
    .mobile-sidebar {
        display: flex;
    }

    .talep_detay_container {
        width: 100%;
    }

    .kartlar-sayfa {
        margin: 70px auto;
    }
    
    .talep-ozeti {
        padding: 10px;
    }

    .talep-ozet-ikon-container,
    .talep-ozet-tarih {
        display: none;
    }

    .talep-ozet-baslik {
        padding: 10px;
    }

    .talep-ozet-baslik,
    .talep-ozeti {
        flex-direction: column;
        align-items: flex-start;
    }

    .talep-ozet-profil img,
    .talep-ozeti-profil img {
        width: 30px;
        height: 30px;
    }

    .talep-ozeti-profil {
        margin-bottom: 10px;
    }

    .public-container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .public-foto-container {
        margin-bottom: 20px;
    }

    .public-mail {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .public-card {
        margin-bottom: 20px;
    }

    .mesaj-icerik-butonlar {
        flex-direction: column;
    }

    .mesaji-cevapla {
        margin-bottom: 20px;
    }

    .mesaji-sil {
        margin-bottom: 20px;
    }

    .kimden-tarih {
        flex-direction: column;
    }

    .baslik-ac-kapa {
        flex-direction: column;
        align-items: flex-start;
    }

    .baslik-ac-kapa h2 {
        font-size: 1.2em;
    }

    .ac-kapa {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 10px;
        font-size: 12px;
    }

    .talep-karti {
        width: calc(50% - 20px);
    }

    .musteri-karti {
        width: calc(50% - 20px);
    }

    .checkbox_yanyana {
        flex-direction: column;
    }
    
    .talep_detay_container {
        width: 100%;
    }

    .talep_detay_container-2 {
        width: 100%;
    }

    .chat-box form {
        flex-direction: column;
    }

    .kart-baslik-2 {
        display: flex;
        flex-direction: column;
        align-items: left;
    }

    .talep-temsilci {
        margin-left: 10px;
        margin-bottom: 10px
    }

    .tarafindan-yazildi {
        flex-direction: column;
    }

    .photo-name {
        justify-content: right;
    }

    .icon-date {
        justify-content: right;
    }

    .tarafindan-yazildi img {
        width: 30px;
        height: 30px;
    }

    .not-box {
        width: 600px;
    }

    .not-ekle-2 {
        width: 580px;
    }

    .notification-icon {
        margin-right: 0;
    }

    .slide-alani {
        margin: 5px;
    }

    .kart-icon {
        margin-bottom: 5px;
    }

    .aciklama {
        text-align: justify;
        padding: 10px;
    }

    .emlak-dugmeleri {
        display: none;
    }

    .mobil-emlak-dugmeleri {
        display: block;
    }

}

@media (max-width: 480px) {

    .budget-inputs {
        flex-direction: column;
    }

    .butce_from {
        margin-bottom: 20px;
    }

    .budget-range {
        flex-direction: column;
    }
    .talep_detay_sayfa {
        padding: 10px;
        margin: 50px auto;
    }

    .talep_detay_profil_foto img {
        width: 30px;
        height: 30px;
        margin-left: 10px;
    }

    .talep-karti {
        width: calc(100% - 20px);
    }

    .kart-baslik {
        font-size: 1em;
    }

    .musteri-karti {
        width: calc(100% - 20px);
    }

    .musteriyi-duzenle,
    .musteriyi-sil {
        font-size: 16px;
        padding: 10px;
    }
    
    .talep_detay_sayfa {
        padding: 10px;
        margin: 50px auto;
    }
    
    .notlar-alani, .chat-box {
        margin: 5px;
    }

    .tarafindan-yazildi {
        flex-direction: column;
    }

    .photo-name {
        justify-content: right;
    }

    .icon-date {
        justify-content: right;
    }

    .tarafindan-yazildi img {
        width: 30px;
        height: 30px;
    }

    .kart-icon-3 {
        font-size: 12px;
    }

    .not-box {
        width: 400px;
    }

    .not-ekle-2 {
        width: 380px;
    }

    .notification-icon {
        margin-right: 0;
    }

    .kart-icon {
        margin-bottom: 5px;
    }

    .emlak-dugmeleri {
        display: none;
    }

    .mobil-emlak-dugmeleri {
        display: block;
    }

}