/* Table View */
.alt-tender-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.alt-tender-table th,
.alt-tender-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.alt-tender-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.alt-tender-table tbody tr:hover {
    background-color: #f1f1f1;
}

/* Toggle Title and Icon */
.toggle-title {
    cursor: pointer;
    color: #0073aa;
    font-weight: bold;
}

.toggle-title:hover {
    text-decoration: underline;
}

.toggle-icon {
    cursor: pointer;
    font-size: 18px;
    transition: 0.3s;
}

/* Expanded Details Section (used in both table and list views) */
.tender-details {
    display: none;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 4px;
    margin-top: 10px;
}

/* Styling for cancellation note blockquote within expanded details */
.tender-details-content blockquote {
    background: #f9f9f9;
    border-left: 4px solid #ccc;
    padding: 10px;
    margin: 10px 0;
}

/* List View Styles for Tender Items */
.alt-tender-list .tender-item {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 20px;
}
