.sissy-scenario-builder {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a; /* Dark background color */
    margin: 0;
    padding: 20px; /* Increase padding for better spacing */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Minimum full viewport height */
    flex-direction: column;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1); /* White shadow */
    border-radius: 8px;
    color: #ffffff; /* White text color */
    box-sizing: border-box; /* Ensure padding is included in width */
}

.sissy-scenario-builder h1 {
    color: #ffffff;
    font-size: 2em;
    margin-bottom: 20px;
}

.sissy-scenario-builder .form-group {
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
    max-width: 400px;
}

.sissy-custom-select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #555555; /* Darker border color */
    border-radius: 4px;
    background-color: #333333; /* Dark background color */
    color: #ffffff; /* White text color */
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1); /* White shadow */
    appearance: none; /* Remove default appearance */
    -webkit-appearance: none; /* Remove default appearance for webkit browsers */
    -moz-appearance: none; /* Remove default appearance for mozilla browsers */
    outline: none; /* Remove outline */
}

.sissy-custom-select:focus {
    border-color: #dd2277; /* Custom focus border color */
    box-shadow: 0 0 8px rgba(221, 34, 119, 0.6); /* Custom focus box shadow */
}

/* Remove hover effect on text inside the select options */
.sissy-custom-select option {
    background-color: #333333; /* Match select background */
    color: #000000; /* Match select text color */
    padding: 10px; /* Adjust padding for better spacing */
}


.sissy-custom-range {
    width: 100%;
}

.sissy-btn {
    background-color: #dd2277;
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.sissy-btn:hover {
    background-color: #c92068;
}

.sissy-scenario-output {
    margin-top: 20px;
    border: 1px solid #555555; /* Darker border */
    padding: 10px;
    text-align: left;
    border-radius: 4px;
    min-height: 100px;
    background-color: #333333; /* Darker background */
    color: #ffffff; /* White text color */
}
