.day-content {
    background-color: white;
    padding: 20px 0px;
}

.filter-box {
    box-shadow: none;
    margin-bottom: 0px;
}

.project-header {
    border-bottom: none;
    margin-bottom: 0;
}

.project-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end !important;
}

.project-content {
    flex: 1;
    margin-right: 20px;
}

.project-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.project-meta {
    margin-bottom: 15px;
}

.region-tag {
    background-color: #e0f2fe;
    color: #0284c7;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    margin-right: 15px;
}

.date {
    font-size: 14px;
    color: #666;
}

.project-details {
    font-size: 14px;
    color: #666;
}

.detail-row {
    margin-bottom: 8px;
    gap: 20px;
}


.detail-label {
    font-weight: bold;
    flex: 1;
}

.detail-value {
    flex: 2;
}

.project-action {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.btn-action {
    background-color: #2C5AF5;
    border-radius: 20px;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}




.day-content {
    background-color: white;
    padding: 20px 0px;
}

.filter-box {
    box-shadow: none;
    margin-bottom: 0px;
}

/* 表格样式 */
.table-wrapper {
    margin-bottom: 20px;
}

.member-table,
.bid-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    overflow-y: hidden;
    display: block;
    max-height: 350px;
}

.member-table thead,
.bid-table thead {
    background-color: #2254FA;
    color: white;
    width: 100%;
    display: table;
    table-layout: fixed;
}

.member-table tbody,
.bid-table tbody {
    width: 100%;
    display: block;
}

.member-table tr,
.bid-table tr {
    width: 100%;
    display: table;
    table-layout: fixed;
}

.member-table th,
.bid-table th {
    padding: 12px;
    text-align: center;
    font-weight: bold;
}

.member-table td,
.bid-table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
    color: #333;
    text-align: center;
}

.member-table tbody tr:hover,
.bid-table tbody tr:hover {
    background-color: #f5f5f5;
}

/* 展开按钮 */
.expand-btn-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.expand-btn {
    color: #2C5AF5;
    padding: 10px 30px;
    border: none;
    font-weight: bold;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}