/* 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;
    /* background: #ad8e5c; */
    /* color: #fff; */
    border-radius: 4px;
    margin-top: 10px;
    border: 1px solid #f5f5f5;
}

/* 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;
}


.alt-tender-table tr.active {
    border-bottom-width: 2px;
    /* font-style: italic; */
    font-weight: bold;
}

.tender-details ul {
    list-style: none; 
    padding-left: 0;   
    margin-left: 0;    
}

.tender-details ul li {
    position: relative; 
    padding-left: 20px; 
    margin-bottom: 2px; 
    line-height: 1.4;   
}

.tender-details ul li::before {
    font-family: "dashicons"; /* Specifies to use the Dashicons font */
    content: "\f316"; /* Unicode for dashicons-download */
    position: absolute;
    color: #68952e;
    left: 0; /* Position the icon at the start of the list item */
    top: 2px; /* Adjust vertical alignment as needed */
}

.tender-details ul li a {
    color: #68952e !important;
    text-decoration: none; 
}
.tender-details ul li a:hover {
    text-decoration: underline !important; 
    color: #68952e !important; 
}

