.tenders-list {
    margin: 20px 0;
}

.tender-item {
    background: #f9f9f9;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.tender-item:hover {
    background: #f0f0f0;
    border-color: #d0d0d0;
}

.tender-title {
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.tender-dates {
    margin-bottom: 15px;
    font-size: 0.9em;
}

.tender-date,
.tender-expiry {
    display: inline-block;
    margin-right: 15px;
    color: #666;
}

.tender-expiry {
    color: #e74c3c;
    font-weight: bold;
}

.pdf-download-button {
    display: inline-block;
    background: #3498db;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.pdf-download-button:hover {
    background: #2980b9;
    color: white;
}

.no-tenders {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
}