body {
    font-family: 'Mulish', sans-serif;
}

.navbar-brand img {
    margin-right: 10px; /* Adjust the space between the logo and the text */
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Align items to the start */
    height: 100vh;
    padding-top: 10vh; /* Push content to start 10% down the container */
}

.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding-top: 20px; */
}

.filter-form .form-group {
    margin-bottom: 5px;  /* Reduce space between form groups */
    padding: 0 5px;      /* Reduce horizontal padding */
}

.filter-form .form-control {
    padding: 5px;        /* Reduce padding inside the form controls */
    width: auto;         /* Adjust width to fit content */
    display: inline-block; /* Display inline to make the form controls fit side by side */
}

.center-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.btn-navy {
    background-color: #0f3e57; /* Custom Navy background */
    border-color: #0f3e57; /* Custom navy border */
    color: #ffffff; /* White text */
    width: 175px; /* Set the desired width */
    white-space: normal; /* Allows text to wrap */
    text-decoration: none; 
    text-align: center; /* Center the text horizontally */
    vertical-align: middle; /* Align the text vertically */
    display: inline-block; /* Required for vertical-align to work */
}


.btn-navy:hover, .btn-navy:active {
    background-color: #1a587a;
    color: #ffffff;
    text-decoration: none;  /* Ensures no underline on hover */
}


#navy_button {
    background-color: #0f3e57; /* Custom Navy background */
    border-color: #0f3e57; /* Custom navy border */
    color: #ffffff; /* White text */
    width: 200px; /* Set the desired width */
    white-space: normal; /* Allows text to wrap */
    text-align: center; /* Center the text horizontally */
    vertical-align: middle; /* Align the text vertically */
    display: inline-block; /* Required for vertical-align to work */
}

#purple_button {
    background-color: #773594; /* Custom Navy background */
    border-color: #773594; /* Custom navy border */
    color: #ffffff; /* White text */
    width: 200px; /* Set the desired width */
    white-space: normal; /* Allows text to wrap */
    text-align: center; /* Center the text horizontally */
    vertical-align: middle; /* Align the text vertically */
    display: inline-block; /* Required for vertical-align to work */
}

#orange_button {
    background-color: #f68722; /* Custom Navy background */
    border-color: #f68722; /* Custom navy border */
    color: #ffffff; /* White text */
    width: 200px; /* Set the desired width */
    white-space: normal; /* Allows text to wrap */
    text-align: center; /* Center the text horizontally */
    vertical-align: middle; /* Align the text vertically */
    display: inline-block; /* Required for vertical-align to work */
}

#grey_button {
    background-color: #555F6A; /* Custom Navy background */
    border-color: #555F6A; /* Custom navy border */
    color: #ffffff; /* White text */
    width: 200px; /* Set the desired width */
    white-space: normal; /* Allows text to wrap */
    text-align: center; /* Center the text horizontally */
    vertical-align: middle; /* Align the text vertically */
    display: inline-block; /* Required for vertical-align to work */
}

#green_button {
    background-color: #36714B; /* Custom Navy background */
    border-color: #36714B; /* Custom navy border */
    color: #ffffff; /* White text */
    width: 300px; /* Set the desired width */
    white-space: normal; /* Allows text to wrap */
    text-align: center; /* Center the text horizontally */
    vertical-align: middle; /* Align the text vertically */
    display: inline-block; /* Required for vertical-align to work */
}

#studentIdsForm .form-group {
    margin-bottom: 10px;
    text-align: center;  /* Center the contents of the form-group */
}

#studentIdsForm .btn-navy {
    margin-top: 10px; /* Adds some space above the button */
}

#studentIdsInput {
    width: 100%; /* Ensures the textarea takes full width of its container */
}

.dashboard-button-container {
    display: flex;
    justify-content: center; /* Centers the buttons in the container */
    gap: 5px; /* Adds 5 pixels gap between each button */
    padding: 20px;
}

.dashboard-button {
    padding: 10px 20px;
    width: 400px; /* Set the desired width */
    white-space: normal; /* Allows text to wrap */
    text-decoration: none;
    text-align: center; /* Center the text horizontally */
    vertical-align: middle; /* Align the text vertically */
    color: white;
    background-color: #773594;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block; /* Required for vertical-align to work */
}

.dashboard-button:hover {
    background-color: #6b2f85 !important;
    color: white;
}
.dashboard-title {
    text-align: center;
    margin: 0;
    padding: 20px; /* Adds padding around the title for better spacing */
}

.custom-dashboard-button {
    display: flex;
    align-items: center;
    width: 500px !important;
    height: 200px;
    border-radius: 12px;
    padding: 1rem;
    color: white;
    font-weight: bold;
    text-align: left;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .custom-dashboard-button img {
    height: 100%;
    width: auto;
    margin-right: 1rem;
  }
  
  .dashboard-text {
    font-size: 1.4rem;
    line-height: 1.3;
  }
  
    .btsc-button {
    background-color: #773594;
    color: white;
    }

    .core360-button {
    background-color: #434343;
    color: white;
    }


.hr.thin-line {
    border: none; /* Remove the default border */
    height: 1px; /* Set the height of the line */
    background-color: #ccc; /* Set the color of the line */
    margin: 20px 0; /* Add some space around the line */
}

.spacer {
    height: 15px; /* Adds a quarter inch of space */
}

.form-label {
    font-weight: bold;
}

.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.content-box {
    width: 100%;
    text-align: left;
}
.section {
    display: flex;
    align-items: top; /* Keeps title and content vertically aligned */
    margin: 10px 0;
}
.section-title {
    font-weight: bold;
    margin-right: 5px;
    white-space: nowrap; /* Ensures title stays on one line */
}

.section-content {
    flex: 1; /* Ensures content fills the remaining space */
}