.spotlight-open {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-family: "Inter", sans-serif !important;
	  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; 
    font-size: 13.5px;
    font-weight: 600;
    background-color: #f4f4f4;
}




.carousel-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.thumbnail {
    width: 100px;
    cursor: pointer;
}

.thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.2s;
}

.thumbnail img:hover {
    transform: scale(1.1);
}

.spotlight {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.spotlight_header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
	padding-top:5px;
	padding-bottom:5px;
    background-color: #ff7600;
    color: white;
    z-index: 2;
}

.spotlight_profile {
    display: flex;
    align-items: center;
}

.spotlight_profile img {
    width: 30px;
    height: 30px;
    border: 2px solid #fbcfaa;
    border-radius: 50%;
    margin-right: 10px;
}

.spotlight_title, .spotlight_ad-title {
    font-size: 13px;
	font-weight:500;
}

.spotlight_separator {
    margin: 0 15px;
    border-left: 2px solid #ff8a26;
    height: 40px;
}

.spotlight_close {
    font-size: 35px;
    padding-right: 30px;
    cursor: pointer;
}

.spotlight_content {
    display: flex;
    flex-grow: 1;
    background-color: white;
    width: 100%;
    overflow: hidden;
}

.spotlight_info-container {
background-color: #fafafa;
    color: #5a5a5a;
    padding: 20px 20px;
    max-width: 500px;
    width: 500px;
    overflow-y: auto;
    position: relative;
}

.spotlight_details {
    font-size: 21px;
    font-weight: 800;
}

.spotlight_info {
    font-size: 13px;
    font-weight: 700;
}

.spotlight_info-container h4 {
    line-height: 1.5;
    margin: 10px 0;
}

.spotlight_info-container hr {
    height: 1px;
    background-color: #ecececcf;
    border: none;
    margin: 10px 0;
}

.spotlight_image-container {
    flex-grow: 1;
    background-color: #333;
    display: flex;
	max-width: 100%;
	width: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.spotlight_image-container img {
    max-width: 90%;
    max-height: 100%;
    transition: transform 0.25s ease;
    cursor: grab;
}

.spotlight_image-counter {
    position: absolute;
    top: 10px;
    left: 50%;
	z-index: 11;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;
}

.spotlight_zoom-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
}

.spotlight_zoom-controls button {
    font-size: 13px;
    font-weight: 600 !important;
    color: #252525;
    background-color: rgb(255 255 255 / 73%);
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotlight_zoom-controls button:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.spotlight_nav-button {
    position: absolute;
    top: 50%;
    font-weight: 800;
    font-size: 20px;
    color: #252525;
    background-color: rgb(255 255 255 / 73%);
    border: none;
    cursor: pointer;
    margin: 0 20px;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    transform: translateY(-50%);
}

.spotlight_nav-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.spotlight_prev {
    left: 10px;
}

.spotlight_next {
    right: 10px;
}

.spotlight_close-btn-container {
    display: flex;
    padding-top: 20px;
    justify-content: center;
}

.spotlight_close-btn {
    font-size: 14px;
    font-weight: 600;
    font-family: "Inter", sans-serif !important;
	  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; 
    color: white;
    background-color: #ff7600;
    min-width: 90px;
    border: none;
    padding: 5px 7px;
    cursor: pointer;
    border-radius: 5px;
}

.spotlight_close-btn:hover {
    background-color: #ff8a26;
}

@media (max-width: 768px) {
    .spotlight_content {
        flex-direction: column;
    }

    .spotlight_info-container {
        width: 100%;
        order: 2;
    }

    .spotlight_image-container {
        order: 1;
    }
}

.property-container {
    max-width: 800;
    margin: 0 auto;

    text-align: center;
    padding: 20px;

}

.property-title {
    color: #333;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.3;
}

.property-price {
    color: #3e3e3e;
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
}

.property-location {
    color: #424242;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 15px;
	padding-top:5px;
}

.property-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 sütun */
    gap: 10px;
    margin-bottom: 30px;
    max-width: 800;
    margin: 0 auto;
    padding-bottom: 10px;
}
.detail-item {
    padding: 12px 15px;
    border-radius: 4px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
	font-weight: 500;
    border: 1px solid #eeeeee;
    color: #444444;
}

.agent-info {
    margin-bottom: 30px;
}

.agent-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.agent-company {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 800;
    margin: 0 auto;
}

.info-badge {
    padding: 12px 15px;
    border-radius: 4px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between; /* İkonu sağa yaslamak için */
    font-size: 12px;
    font-weight: 800;
    border: 1px solid #eeeeee;
    color: #444444;
}

/* İkon padding'ini kaldırıp müstakil stil veriyoruz */
.badge-warning i {

}

.badge-info i {

}


.icon {
    font-size: 20px;
}

/* İyileştirilmiş Skeleton efekti */
.pazarda-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    width: 96.5px;
    height: 73px;
    margin: 5px;
    display: inline-block;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

.pazarda-large-skeleton {
    height: 400px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    display: inline-block;
}

@keyframes shimmer {
    to {
        background-position: -200% 0;
    }
}

/* Loading İkonu */
#unique-loading-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0,0,0,0.3);
    padding: 12px;
    border-radius: 50%;
    color: #fff;
    z-index: 999;
    display: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

#unique-loading-icon i {
    font-size: 18px;
    animation: spin 0.8s infinite linear;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Spotlight Image Container */
.spotlight_image-container {
    position: relative;
}

.pazarda-gallery-container {
    text-align: center;
    width: 600px;
    min-height: 400px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Büyük Resim Stilleri */
.pazarda-large-image {
    width: 100%;
    min-height: 400px;
    position: relative;
    cursor: pointer;
    z-index: 1;
}

.pazarda-large-image img {
    width: 100%;
    max-height: 400px;
    min-height: 400px;
    object-fit: contain;
    display: inline-block;

}

.pazarda-large-image:hover img {
   
}

/* Thumbs Container */
.pazarda-thumbs-container {
    width: 100%;
    min-height: 180px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    border: 1px solid #ececec;
    justify-content: left;
    margin-top: 1px;
}

.pazarda-thumbs {
    display: flex;
    flex-wrap: wrap;
    transition: transform 0.1s ease-out;
}

.pazarda-thumbs img {
    width: 95.5px;
    height: 73px;
    border: 1px solid #e4e4e4;
    margin: 5px;
    cursor: pointer;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.1s ease;
}

.pazarda-thumbs img:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}



/* Navigation Arrows */
.pazarda-navigation {
    display: none;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.pazarda-arrow {
    background-color: #f4f4f4;
    border-radius: 6px;
    width: 50px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid #e5e5e5;
    font-size: 16px;
    opacity: 1;
    transition: all 0.2s ease;
    margin: 0 10px;
}

.pazarda-arrow:not(.disabled):hover {
    background-color: #e8e8e8;
    transform: translateY(-1px);
}

.pazarda-arrow.disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

/* Blur Background */
.blur-background {
    position: absolute;
    width: 100%;
    height: 400px;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    filter: brightness(200%) contrast(30%) opacity(15%) grayscale(80%) blur(3px);
    z-index: -1;
}

/* Loading States */
.pazarda-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255,255,255,0.8);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: none;
    z-index: 10;
}

.pazarda-loading i {
    font-size: 20px;
    color: #333;
    animation: spin 0.6s infinite linear;
}

    /* Başlık için stil */
    .section-title {
        font-size: 15px;
        font-weight: 700;
        color: #438ed8;
    }

    /* Tablo başlığı için stil */
    .table-header {
        max-width: 200px;
        width: 200px;
        font-weight: 500;
        border-top: none;
    }

    /* Durum hücresi için temel stil */
    .status {
        font-weight: 700;
        border-top: none;
    }

    /* Duruma göre renkler */
    .status-painted {
        color: #fdb724; /* Sarı */
    }

    .status-unknown {
        color: #000000; /* Siyah */
    }

    .status-replaced {
        color: #d8636d; /* Kırmızı */
    }

    /* Tablo genel stili */
    .table {
        margin-bottom: 0;
        border-top: none;
    }
	
	                .table-row {
                    transition: all 0.3s ease;
                }
                .table-row:hover {

                    cursor: pointer;
                }
                #carSvg path {
                    transition: all 0.3s ease;
                }
.highlight {
    filter: brightness(1.2) saturate(1.2);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

/* Gri parçalar için özel highlight efekti */
path[fill="#efefef"].highlight,
path[fill="rgb(239, 239, 239)"].highlight {
    filter: contrast(1.2) brightness(0.6); /* Daha koyu ve kontrastlı */
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}
                .table-highlight {
                    background-color: #fffbf0 !important;
                }
                .table-header {
                    padding: 10px;
                    text-align: left;
                    border-bottom: 1px solid #ececec;
                }
                .status {
                    padding: 10px;
                    border-bottom: 1px solid #ececec;
                }
