/* assets/style.css */

body {
    background-color: #eef2f5;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn:hover {
    background-color: #0056b3;
}

.dropdown {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Dash (react-select) styles */
.Select-control {
    min-height: 50px !important;
}

.Select-option,
.VirtualizedSelectOption {
    font-size: 18px;
    padding: 12px !important;
    white-space: normal !important;
    word-break: break-word;
}

.Select-menu-outer {
    max-height: 300px !important;
    overflow-y: auto !important;
}

/* Mobile layout */
@media (max-width: 600px) {
    .btn {
        font-size: 14px;
        padding: 8px 12px;
        width: 100%;
    }

    .dropdown {
        width: 100%;
        font-size: 16px;
    }

    .control-group {
        flex-direction: column;
        align-items: stretch;
    }
}
