.send-configuration {
    display: flex;
    flex-direction: column;
    background-color: #111111;
    height: 100vh;
    overflow: hidden;
    margin-bottom: 50px;
}

.send-config-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.send-config-content::-webkit-scrollbar {
    width: 8px;
}

.send-config-content::-webkit-scrollbar-track {
    background: #333;
    border-radius: 4px;
}

.send-config-content::-webkit-scrollbar-thumb {
    background-color: #555;
    border-radius: 4px;
    border: 2px solid #333;
}

.send-config-content::-webkit-scrollbar-thumb:hover {
    background-color: #D78565;
}

/* Firefox */
.send-config-content {
    scrollbar-width: thin;
    scrollbar-color: #555 #333;
}

.form-group {
    margin-bottom: 15px;
    /* padding-right: 10px; */
}

.form-group label {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group select {
    width: 100%; /* Ensure all fields have the same width */
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #444;
    background-color: #1b1b1b;
    color: #fff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin-right: 10px; /* Ensure spacing on the right side */
    box-sizing: border-box; /* Include padding in the element's width and height */
    -webkit-appearance: none; /* Remove default styling for select dropdown */
    -moz-appearance: none;
    appearance: none;
}

.form-group input::placeholder {
    color: #777;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: #D78565;
    box-shadow: 0 0 5px #D78565;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    background-color: #1b1b1b;
    border: 1px solid #444;
    border-radius: 4px;
    margin-right: 10px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: #D78565;
    border-color: #D78565;
}

.checkbox-group label {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #bbb;
    cursor: pointer;
}

.error-message {
    color: #D78565; /* Red error color to match your theme */
    font-size: 12px;
    margin-top: 5px;
    display: none; /* Hide error messages by default */
}