/* -------------------------------
   BIDS LIST CONTAINER
-------------------------------- */
.ct-bids-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0;
    padding: 0;
}

/* -------------------------------
   CARD BASE STYLE
-------------------------------- */
.ct-bid-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 28px 32px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease-in-out;
}

.ct-bid-card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* -------------------------------
   LEFT COLUMN — TITLE + CATEGORY
-------------------------------- */
.ct-bid-card-left {
    width: 55%;
}

.ct-bid-card-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.ct-bid-card-title a {
    color: #000;
    text-decoration: none;
}

.ct-bid-card-title a:hover {
    text-decoration: underline;
}

/* Category Badge */
.ct-bid-category-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #f3f3f3;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 8px;
    color: #333;
    font-weight: 500;
}

/* -------------------------------
   RIGHT COLUMN — INFO GRID
-------------------------------- */
.ct-bid-card-right {
    width: 40%;
    text-align: right;
}

/* Grid for Status / Close Date / Bid ID */
.ct-bid-meta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 10px;
}

.ct-bid-meta-block {
    font-size: 14px;
}

/* Label and Value styling */
.ct-label {
    font-weight: 600;
    color: #555;
    margin-right: 4px;
}

.ct-value {
    color: #222;
}

/* -------------------------------
   RESPONSIVE STYLING
-------------------------------- */
@media (max-width: 900px) {
    .ct-bid-card {
        flex-direction: column;
        gap: 16px;
    }

    .ct-bid-card-left, 
    .ct-bid-card-right {
        width: 100%;
        text-align: left;
    }

    .ct-bid-meta-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .ct-bid-meta-grid {
        grid-template-columns: 1fr;
    }
}
