body {
    font-family: Arial, sans-serif;
    background-color: #5b6fb5;
    margin: 0;
    padding: 15px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Top Search Box */
.search-box {
    background-color: #e8e8e8;
    padding: 30px 40px 40px;
    margin-bottom: 20px; /* Blue Gap 1 */
}

h1 {
    text-align: center;
    margin: 0 0 20px;
    font-size: 32px;
    color: #333;
}

.search-form {
    text-align: center;
    margin: 20px 0 10px;
}

.input-row {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.search-form label {
    font-size: 16px;
    color: #666;
    margin-right: 10px;
}

.search-form input {
    width: 200px;
    padding: 8px 12px;
    margin: 0 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
}

.button-row {
    margin-top: 15px;
}

.search-form button {
    padding: 8px 24px;
    margin: 0 5px;
    border: 1px solid #999;
    border-radius: 3px;
    background-color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.search-form button:hover {
    background-color: #f0f0f0;
}

.message {
    text-align: center;
    min-height: 20px;
    margin: 10px 0;
    color: #d32f2f;
    font-weight: bold;
}

.validation-message {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 5px;
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    z-index: 1000;
}

.validation-icon {
    background-color: #ff9800;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 14px;
    font-weight: bold;
}

.validation-text {
    color: #333;
    font-size: 14px;
}

/* Tabs Section */
.tabs-container {
    display: flex;
    background-color: #fff;
    border-top: 1px solid #ccc;
    border-bottom: 2px solid #5b6fb5;
    margin-bottom: 20px;
}

.tab-button {
    border: none;
    padding: 14px 24px;
    cursor: pointer;
    background-color: #f5f5f5;
    color: #666;
    font-size: 16px;
    border-right: 1px solid #ddd;
}

.tab-button:hover {
    background-color: #e8e8e8;
}

.tab-button.active {
    background-color: #fff;
    color: #333;
    font-weight: bold;
}

/* Content Results */
.results-container {
    background-color: #fff;
}

.tab-content {
    display: none;
    padding: 20px;
}

.tab-content.active {
    display: block;
}

table {
    border-collapse: collapse;
    width: 100%;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background-color: #f5f5f5;
    font-weight: bold;
}

td:first-child {
    background-color: #f9f9f9;
    font-weight: 500;
    width: 40%;
}

.change-positive {
    color: #2e7d32;
    font-weight: bold;
}

.change-negative {
    color: #c62828;
    font-weight: bold;
}
