.custom-login {
  color: #002184;
  font-size: 1.25rem;
  font-weight: bold;
}

/* styles.css */

/* Global Styles */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* body.bg-login {
    background-image: url('../images/building.png');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
} */

body.bg-login {
    background-color: #ccc; /* Light gray */
    background-image: none;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 65vh;
}

/* Flex Layout */
.container-flex {
    flex-grow: 1;
    padding-bottom: 1rem;
}

@media (max-width: 768px) {
  .page-wrapper {
    height: 82vh; /* reduce height on smaller screens */
  }
}

footer {
    padding: 20px;
    text-align: center;
}

.footer-section {
    padding: 15px;
    color: rgba(255,255,255,0.6);
}

.footer-section p {
    padding: 15px;
    color: rgba(255,255,255,0.6);
}

.footer .row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}


.footer-pad {
    padding: 15px 0;
}

/* Background Colors */
.about-kvp {
    background-color: rgba(41,51,112,0.6);
}

.implementation-area {
    background-color: rgba(251,110,5,0.5);
}

.vision {
    background-color: rgba(42,171,226,0.5);
}

hr {
    height: 2px;
    background-color: #2AABE2;
    border: none;
}

/* Custom Utility Classes */
.border-white {
    border: 1px solid white;
}

.text-center-pb10 {
    text-align: center;
    padding-bottom: 10px;
}

.bg-color-reset {
    background-color: #2AABE2;
    color: white;
}



/* Make the main content area take the remaining space */
.main-content {
    flex: 1;
}



.msg-box {
    padding: 10px;
    color: white;
}

.text-red {
    color: red;
}

/* styles.css */

/* Chart Container */
.chart-container {
    height: 500px;
    position: relative;
}

.chart-container.no-data::before {
    content: "No Data found!";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #888;
    font-style: italic;
    font-size: 16px;
    text-align: center;
}

/* Splash Screen Styling */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.splash-message {
    color: #fff;
    font-size: 24px;
    text-align: center;
    padding: 30px;
    background-color: #242E73;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Highcharts Styling */
.highcharts-figure,
.highcharts-data-table table {
    min-width: 310px;
    max-width: 800px;
    margin: 1em auto;
}

.container {
    height: 420px;
}

.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid #ebebeb;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}

.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
    padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: #f1f7ff;
}

hr {
    height: 2px;
    background-color: #2AABE2;
    border: none;
}

.bg-white {
    background-color: white;
}

.bg-email {
    background-color:#f1f1f1;
}

.border-white {
    border: 1px solid white;
}

.text-center-pb10 {
    text-align: center;
    padding-bottom: 10px;
}

.bg-color-reset {
    background-color: #2AABE2;
    color: white;
}

.bg-login {
    background-color:#2AABE2;
}

.text-center {
    text-align: center;
}

.text-blue-title {
    color: #002184;
    font-size: 1.25rem; /* approx. size="4" */
    font-weight: bold;
}
