/* Andesite Theme - Applied globally */
body {
    background-color: #3b3c3e !important;
    color: #ffffff !important; /* Forces all text to white */
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

h2 {
    color: #ffffff !important; /* Ensures the header is visible */
}

/* Ensure the labels inside the card are readable if you add them later */
.card {
    background-color: #2c2d2e !important;
    border: 1px solid #555 !important;
    color: #ffffff !important; /* Ensures text inside the card is white */
}

/* Make input text white and readable */
.form-control {
    background-color: #3b3c3e !important;
    border: 1px solid #555 !important;
    color: #ffffff !important; /* This makes the typed text white */
}

/* Make the placeholder text (Username/Password prompt) a lighter gray */
.form-control::placeholder {
    color: #b0b0b0 !important; /* A light gray that is visible on dark gray */
    opacity: 1; /* Ensures the color is solid */
}

/* Ensure the text is visible even when the input is focused */
.form-control:focus {
    color: #ffffff !important;
    background-color: #4a4b4d !important;
}