/* Adisyonlar Sayfası - Arama Paneli */
.modern-search-panel {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
}

.adisyon-search-form {
    width: 100%;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-icon {
    position: absolute;
    left: 16px;
    color: #6c757d;
    font-size: 18px;
    z-index: 1;
}

.search-input {
    flex: 1;
    padding: 14px 16px 14px 48px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.search-input:focus {
    outline: none;
    border-color: #fe6447;
    background: white;
    box-shadow: 0 0 0 4px rgba(254, 100, 71, 0.1);
}

.search-btn {
    padding: 14px 24px;
    background: linear-gradient(135deg, #fe6447 0%, #ff8a65 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 100, 71, 0.3);
}

.search-btn:active {
    transform: translateY(0);
}

.clear-search-btn {
    padding: 14px;
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
}

.clear-search-btn:hover {
    background: #e9ecef;
    color: #495057;
    border-color: #dee2e6;
}

/* Açık Hesaba Atandı Badge */
.status-badge.acik-hesap-badge {
    background-color: #FF6348;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85em;
}

.status-badge.acik-hesap-badge small {
    font-size: 0.75em;
    opacity: 0.9;
}

/* Kapanmadı Badge */
.status-badge.kapanmadi-badge {
    background-color: #6c757d;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85em;
}

/* Filter Label Hidden */
.filter-label-hidden {
    opacity: 0;
}

@media (max-width: 768px) {
    .search-input-wrapper {
        flex-direction: column;
    }
    
    .search-input {
        width: 100%;
        padding-right: 16px;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
    }
    
    .clear-search-btn {
        width: 100%;
    }
}

