/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f6fa;
    color: #2f3640;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h2 {
    color: #273c75;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Auction Controls */
.auction-controls {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auction-controls label {
    font-weight: bold;
    color: #353b48;
}

.auction-controls select,
.auction-controls input {
    width: 100%;
    padding: 10px;
    border: 1px solid #dcdde1;
    border-radius: 6px;
    font-size: 16px;
    background-color: #fff;
    color: #2f3640;
}

.auction-controls select:focus,
.auction-controls input:focus {
    outline: none;
    border-color: #273c75;
    box-shadow: 0 0 0 3px rgba(39, 60, 117, 0.2);
}

/* Results Section */
.results {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.cost-breakdown div {
    margin-bottom: 10px;
    font-size: 16px;
    color: #353b48;
}

.chart-container {
    margin-top: 20px;
    height: 300px;
}

/* Compare Auctions Section */
.compare-auctions {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

/* Financing Section */
.financing {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.financing-toggle {
    margin-bottom: 20px;
}

.financing-toggle label {
    font-weight: bold;
    color: #353b48;
}

.financing-inputs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.financing-inputs label {
    font-weight: bold;
    color: #353b48;
}

.financing-inputs input {
    width: 100%;
    padding: 10px;
    border: 1px solid #dcdde1;
    border-radius: 6px;
    font-size: 16px;
    background-color: #fff;
    color: #2f3640;
}

.financing-inputs input:focus {
    outline: none;
    border-color: #273c75;
    box-shadow: 0 0 0 3px rgba(39, 60, 117, 0.2);
}

.financing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.financing-table th,
.financing-table td {
    padding: 12px;
    border: 1px solid #dcdde1;
    text-align: left;
}

.financing-table th {
    background-color: #273c75;
    color: #fff;
    font-weight: bold;
}

.financing-table tbody tr:nth-child(even) {
    background-color: #f5f6fa;
}

.financing-table tbody tr:hover {
    background-color: #e1e4e8;
}

/* Auction Actions */
.auction-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.auction-actions button {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    background-color: #273c75;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auction-actions button:hover {
    background-color: #1e2f5a;
}

.auction-actions button:active {
    background-color: #152238;
}