/* style.css for Dark Theme */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    /* Dark background */
    color: #E0E0E0;
    /* Light grey for text */
    padding: 20px;
}

h1,
h2 {
    color: #FFA726;
    /* Orange color for headings, adjusted for dark background */
}

a {
    background-color: #FF9800;
    /* Orange background for links */
    color: #212121;
    /* Dark text for contrast */
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

a:hover {
    background-color: #FB8C00;
    /* Slightly darker orange for hover effect */
}

button {
    background-color: #FF9800;
    /* Orange background for buttons */
    color: #212121;
    /* Dark text for contrast */
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #FB8C00;
    /* Darker shade of orange for hover effect */
}

#loader {
    color: #FF5722;
    /* Deep orange color for the loader text */
    font-weight: bold;
    display: none;
    /* Keep it hidden by default */
}

#status,
#responseText {
    color: #FFAB91;
    /* Light orange for status and response text, for better readability on dark bg */
}

/* Control Panel Styles */
div>h2 {
    margin-top: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #444;
    /* Orange border under control panel heading */
}

div {
    background-color: #1E1E1E;
    /* Darker grey for the control panel background */
    border: 2px solid #444;
    /* Orange border for the control panel */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(255, 152, 0, 0.2);
    /* Orange shadow for depth */
    margin-top: 60px;
    margin-left: 40px;
    margin-right: 40px;
}

#errorSection {
    background-color: #2E2E2E;
    /* Even darker grey for error background */
    border: 2px solid #EF5350;
    /* Red border for contrast */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

#errorSection h2 {
    color: #EF5350;
    /* Bright red for error heading */
}