/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
} */

.auction-deal {
    padding: 50px 20px;
}

h1, h2 {
    text-align: center;
    margin-bottom: 20px;
}

p {
    text-align: center;
    margin-bottom: 30px;
}

.auction-image {
    display: block;
    max-width: 100%;
    margin: 0 auto 30px;
}

.table-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

table {
    width: 80%;
    border-collapse: collapse;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 15px;
    border: 1px solid #ddd;
    color: black;
    /* text-align: center; */
}

th {
    background-color: #f8f8f8;
    font-weight: bold;
}

.note {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 20px;
    color: #da0b0b;
}

@media (max-width: 768px) {
    table {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1, h2, p {
        padding: 0 10px;
    }
    .auction-image {
        width: 90%;
    }
}


/* term ann services */
.terms-section {
    background-color: #000000;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 30px;
}

.terms-conditions h2, 
.guaranty-section h2, 
.payment-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
    /* text-align: center; */
    margin-bottom: 30px;

}

.terms-conditions ul {
    list-style-type: none;
    padding: 0;
}

.terms-conditions ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.guaranty-section table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.guaranty-section table th, 
.guaranty-section table td {
    border: 1px solid #000000;
    padding: 10px;
    text-align: center;
    background-color: white;
}

.guaranty-section table th {
    background-color: #ffffff;
    color: #000000;
    text-transform: uppercase;
}

.guaranty-section table td {
    background-color: #ffffff;
    color: #000000;
}

.payment-section p {
    margin: 10px 0;
    font-size: 16px;
}

.payment-section strong {
    color: #f0ad4e;
    font-size: 18px;
}



/* shadule */
/* Container for the tabs */
.container {
    width: 100%;
    margin: 0 auto;
}

/* Tabs container */
.tab {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    background-color: #f1f1f1;
    border-radius: 10px;
    padding: 10px;
}

/* Style for the tab buttons */
.tab button {
    background: linear-gradient(135deg, #ff7e7e, #c72c2c); /* Red gradient */
    border: none;
    color: white;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hover effect for buttons */
.tab button:hover {
    background: linear-gradient(135deg, #c72c2c, #ff7e7e); /* Reverse red gradient */
    color: #fff;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* Style for active tab button */
.tab button.active {
    background: linear-gradient(135deg, #d02424, #9b0000); /* Darker red gradient */
    color: #fff;
    box-shadow: 0px 10px 14px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Tab content styling */
.tabcontent {
    display: none;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Styling for the items inside the tab content */
.day-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 10px;
}

.item {
    margin: 10px;
    text-align: center;
}

.item img {
    max-width: 100px;
    height: auto;
    margin-bottom: 10px;
}

