.ihaleler-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.ihaleler-header {
    margin-bottom: 2rem;
}

.ihaleler-header h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.ihaleler-title-line {
    width: 180px;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    margin-top: 0.5rem;
}

.ihaleler-table-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.ihaleler-table {
    width: 100%;
    border-collapse: collapse;
}

.ihaleler-table th,
.ihaleler-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.ihaleler-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.ihaleler-table tr:hover {
    background-color: #f8f9fa;
}

/* Sütun genişlikleri */
.ihale-no-col {
    width: 15%;
}

.ihale-tarih-col {
    width: 15%;
}

.ihale-baslik-col {
    width: 55%;
}

.ihale-dosya-col {
    width: 15%;
}

/* İçerik stilleri */
.ihale-no {
    font-weight: 500;
    color: #666;
}

.ihale-tarih {
    color: #666;
}

.ihale-baslik {
    color: #333;
    font-weight: 500;
}

.ihale-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.ihale-pdf-btn:hover {
    background-color: #c0392b;
}

.ihale-pdf-btn i {
    font-size: 1rem;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .ihaleler-container {
        padding: 1rem;
    }

    .ihaleler-table {
        display: block;
        overflow-x: auto;
    }

    .ihaleler-table th,
    .ihaleler-table td {
        padding: 0.75rem;
    }

    .ihale-pdf-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
} 