
/* Additional custom styles */
.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link {
    color: #c2c7d0; /* Example of changing sidebar text color */
}

.nav-icon {
    font-size: 0.85rem; /* Resize the font-awesome icon */
    line-height: 1.5;  /* Adjust line-height to align text and icon */
}


html, body {
   /* height: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;*/
    background-color: #f4f6f9; /* Optional: Add a background color */
}

.login-box {
    width: 360px; /* Adjust width if necessary */
    margin: auto;
}

.card {
    border-radius: 8px; /* Optional: Add rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

/* Message Panels */

.message-panel {
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    border: 1px solid transparent;
}

.message-panel.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.message-panel.error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.message-panel.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
}

.message-panel.warning {
    background-color: #fff3cd;
    color: #856404;
    border-color: #ffeeba;
}
