/* Container for the third column content */
.third-row-content {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 20px;
}

/* Title styling */
.section-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
    text-transform: uppercase;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

/* Styling for bid section */
.bid-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
}

/* Styling individual bid items */
.bid-item {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #dee2e6;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Styling for the links inside bid items */
.bid-item a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.bid-item a i {
    margin-right: 8px;
    color: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .third-row-content {
        padding: 10px;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .bid-section {
        padding: 10px 0;
    }

    .bid-item {
        padding: 10px;
    }
}