/* Styles for the LUMI Scenario Generator Page */

.scenario-generator-container {
    padding: 20px;
}

.client-info {
    margin-bottom: 20px;
}

.client-info-item {
    margin-bottom: 8px;
}

.client-info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-weight: bold;
}

#project-select {
    padding: 2px 5px;
    margin-left: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: white;
    font-size: 14px;
    min-width: 150px;
}

.info-box {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    flex: 1;
}

.info-box label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.controls-area {
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.dropdown-controls {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.dropdown-controls .form-group {
    flex: 1;
    max-width: 300px;
    min-width: 250px;
}

.dropdown-controls .form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: center;
}

.dropdown-controls .form-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: white;
    min-height: 120px;
}

.dropdown-controls .form-group select:disabled {
    background-color: #f5f5f5;
    color: #666;
}

.dropdown-controls .form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
    text-align: center;
}

.controls-area .btn {
    display: block;
    margin-left: auto;
    margin-right: 0;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: bold;
}

.results-table-container {
    margin-top: 20px;
}

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

.results-table th,
.results-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    vertical-align: top;
}

.results-table th {
    background-color: #f2f2f2;
}

.results-table td:first-child {
    font-weight: bold;
    width: 150px; /* Adjust as needed */
}

.disclaimer {
    margin-top: 20px;
    font-style: italic;
    color: #555;
    text-align: center;
}

/* Loading Message Styles */
.loading-message {
    padding: 15px;
    margin-bottom: 15px;
    background-color: #e9f5ff; /* Light blue background */
    border: 1px solid #b3d7f0; /* Blue border */
    color: #31708f; /* Darker blue text */
    text-align: center;
    border-radius: 4px;
}

.hidden {
    display: none;
}

/* Add any additional styles inspired by conceptia.com/foresight or existing pages */ 