.main_header {
    background-color: #2A2C34;
    border-radius: 25px;
    margin-top: 0.5%;
}

.login-page {
    background-color: #2A2C34;
    border-radius: 25px;
    margin-top: 0.5%;
}

.discord-login-box {
    background-color: #2A2C34;
    color: white;
    border-radius: 5px;
    margin-top: 0.5%;
    padding: 10px;
}

body {
    background-color: #1D1F25;
}

.container.col-12 {
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 10px;
}

.form-container {
    padding: 10px;
    border-radius: 20px;
    color: white;
    background-color: #2A2C34;
    width: 80%;
    margin: 0 auto; 
}

.form-control {
    background-color: #32353f;
    color: white;
}

.form-control::placeholder {
    color: rgb(124, 123, 123);
}

.form-control:focus {
    background-color: #2A2C34;
    color: white;
}

/* Customize the appearance of the select element */
.form-select {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    background-color: #2A2C34;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#infoBox {
    word-wrap: break-word; /* Allow long words to break and wrap onto the next line */
    overflow-wrap: break-word; /* Ensure that words wrap within the box */
    width: 100%; /* Adjust the width as needed */
}





/* Change background color */
.form-select {
    background-color: #2A2C34;
    color: white;
}

/* Remove default browser styling for arrow */
.form-select::-ms-expand {
    display: none;
}

/* Focus style */
.form-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
}

/* Disabled state */
.form-select:disabled {
    background-color: #e9ecef;
    color: #6c757d;
}

/* Hover effect */
.form-select:hover {
    border-color: #b1b7bd;
}

/* Apply styles to options within the dropdown */
.form-select option {
    color: initial; /* Reset text color */
    background-color: initial; /* Reset background color */
}


/* Alerts */

.custom-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out;
}

.success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-in-out; /* Added transition property */
}
