/* Genel Stil */
.iln-wrapper {
    display: flex;
    justify-content: center;
    margin-left: auto;
   margin-right: auto;
   margin-top: 130px;
    max-width: 1050px;
    flex-direction: column;
  
}

.iln-containers {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
}

.iln-sidebar {
    width: 250px;
    min-width: 200px;
    padding: 20px;
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
    box-sizing: border-box;
}

.iln-sidebar a {
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 5px;
}

.iln-sidebar a:hover,
.iln-sidebar a.active {
    background-color: #007bff;
    color: #fff;
}

.iln-sidebar ul {
    padding-left: 20px;
}

.iln-sidebar ul li a {
    padding: 5px;
    font-size: 14px;
}

.iln-content {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

/* Sekmeler */
.teklif-sekmeler {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

/* Üst Bant */
.teklif-bant {
    background-color: #f8f9fa;
    padding: 10px 20px;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Sekme Butonları */
.teklif-sekme {
    padding: 5px 9px;
    background-color: #fff;
    color: #007782;
    border: 1px solid #007782;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.teklif-sekme i {
    color: #007782;
}

.teklif-sekme:hover {
    background-color: #007782;
    color: #fff;
}

.teklif-sekme:hover i {
    color: #fff;
}

.teklif-sekme.active {
    background-color: #007782;
    color: #fff;
}

.teklif-sekme.active i {
    color: #fff;
}

/* İlan Kartı */
.iln-ilan-card {
    display: flex;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 20px;
    width: 44rem;
    box-sizing: border-box;
    margin-left: 57px;
}

.iln-ilan-card.teklif-gecildi {
    border: 2px solid #dc3545; /* Kırmızı zemin */
    background-color: #f8e1e4; /* Hafif kırmızı arka plan */
}

.iln-ilan-card.teklif-lider {
    border: 2px solid #28a745; /* Yeşil zemin */
    background-color: #e6f4ea; /* Hafif yeşil arka plan */
}

.iln-ilan-card.iln-ilan-passive {
    background-color: #f0f0f0; /* Gri zemin */
    opacity: 0.6; /* Hafif soluk görünüm */
}

/* Alınan Teklifler Sekmesine Özel Pasif İlan Stili */
.iln-content[data-sekme="alinan"] .iln-ilan-card.iln-ilan-passive {
    background-color: #d3d3d3; /* Daha koyu gri */
    opacity: 0.8; /* Daha az soluk */
}

/* Pasif İlanlarda Opacity’nin Alt Öğelere Etkisini Kaldırma */
.iln-ilan-passive .iln-dropdown {
    opacity: 1; /* Dropdown menü tam opak olacak */
}

.iln-ilan-passive a {
    color: #666; /* Bağlantı rengi soluk */
    text-decoration: none; /* Alt çizgi kaldırma */
}

.iln-ilan-thumbnail {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 5px;
}

.iln-ilan-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iln-ilan-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
}

.iln-ilan-details {
    flex: 1;
}

.iln-ilan-title {
    font-size: 18px;
    margin-bottom: 5px;
    white-space: normal;
    word-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-width: 100%;
}

.tum-teklifler-modal-content table td img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.counter-container {
    display: flex;
    align-items: center;
    gap: 1px;
    margin: 10px 0;
}

.clock-icon {
    width: 24px;
    height: 24px;
}

.counter {
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

.iln-ilan-type {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.iln-ilan-dates {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.iln-ilan-price {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Verdiğim Teklif ve Şu Anki Fiyat */
.iln-teklif-miktari {
    font-size: 18px;
}   

.iln-suanki-fiyat {
    font-size: 18px;
    margin-bottom: 10px;
}

.teklif-icon {
    font-size: 16px;
    color: #333;
}

.iln-icons {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

/* İlan Eylemleri */
.iln-ilan-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.iln-action-btn {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
}

.iln-teklif-ver-btn {
    background-color: #007782;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.iln-teklif-ver-btn:hover {
    background-color: #007782;
}

.iln-teklif-ver-btn i {
    color: #fff;
}

.iln-teklifleri-gor-btn {
    background-color: #28a745;
}

.iln-teklifleri-gor-btn:hover {
    background-color: #218838;
}

.iln-teklif-geri-cek-btn {
    background-color: #dc3545; /* Kırmızı */
}

.iln-teklif-geri-cek-btn:hover {
    background-color: #c82333;
}

.iln-teklif-kaldir-btn {
    background-color: #6c757d; /* Gri */
}

.iln-teklif-kaldir-btn:hover {
    background-color: #5a6268;
}

/* Dropdown Menü Stilleri */
.iln-dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2000; /* Daha yüksek z-index */
    border-radius: 5px;
    margin-top: 5px;
}

.iln-dropdown li {
    list-style: none;
}

.iln-dropdown li a {
    display: block;
    padding: 1px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    width: 7rem;
    border-bottom: 1px solid #f2f2f2;
}
.iln-dropdown li a:hover {
    background-color: #f0f0f0;
}

/* Teklif Listesi */
.teklif-listesi {
    margin-top: 10px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.teklif-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #dee2e6;
}

.teklif-item.en-yuksek-teklif {
    background-color: #e6ffe6;
    font-weight: bold;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 5px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

/* Sayfalandırma */
.iln-pagination {
    margin-top: 20px;
    text-align: left;
}