.ihale-filters {
    background: #fff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.ihale-list {
    margin-top: 30px;
}

.view-options {
    margin-bottom: 20px;
}

.view-btn {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    margin-right: 10px;
}

.view-btn.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

.ihale-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.ihale-item.list-view {
    display: flex;
    align-items: center;
}

.ihale-item.grid-view {
    display: inline-block;
    width: calc(33.333% - 20px);
    margin-right: 20px;
}

.ihale-image {
    flex: 0 0 200px;
}

.ihale-image img {
    width: 100%;
    height: auto;
}

.ihale-details {
    padding: 20px;
}

.ihale-meta {
    margin-top: 10px;
}

.ihale-meta span {
    display: inline-block;
    margin-right: 15px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9em;
}

.price {
    background: #f8f9fa;
    color: #28a745;
}

.status {
    background: #e9ecef;
    color: #6c757d;
}

.evrak {
    background: #e9ecef;
    color: #6c757d;
}

.pagination {
    margin-top: 30px;
    text-align: center;
}

.pagination-links {
    display: inline-block;
}

.page-link {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}

.page-link.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .ihale-item.list-view {
        flex-direction: column;
    }
    
    .ihale-item.grid-view {
        width: 100%;
        margin-right: 0;
    }
    
    .ihale-image {
        flex: 0 0 auto;
    }
} 