html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #5a5a5a;
}

header, footer {
    background-color: #232323;
    color: #fff;
    padding: 1em;
    text-align: center;
}

main {
    padding: 2em;
    background-color: #1c1c1c;
    text-decoration: none;
    color: rgb(255, 255, 255);
}

#sidebar {
    height: 100vh;
    background-color: #232323;
    color: rgb(255, 255, 255);
    transition: all 0.1s cubic-bezier(0.25, 0.1, 0.25, 1);  
    width: 230px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
#sidebar.active {
    transform: translateX(0); 
}
#sidebar .sidebar-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
}
#sidebar .sidebar-footer-text {
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    color: rgb(194, 194, 194);
}
#sidebar.minimized {
    width: 60px;
}
#sidebar.minimized .sidebar-footer-text {
    display: none;/* Hide text in minimized mode */
}
#sidebar.minimized .sidebar-text {
    display: none;/* Hide text in minimized mode */
}
#sidebar.minimized .sidebar-item {
    font-size: 22px;
    margin-left: 20;
    align-items: center;
    color: rgb(255, 255, 255);
}
#sidebar .sidebar-item {
    padding: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    align-items: center;
    display: flex;
    text-decoration: none;
    color: rgb(255, 255, 255); /* Sidebar item color */
}
#sidebar .sidebar-item:hover {
     background-color: #0d6efd; /* #0f8d2e */
}
#sidebar .toggle-btn {
    cursor: pointer;
    color: #575757;
    padding: 16px;
    text-align: start;
    font-size: 26px;
}
#sidebar .toggle-btn:hover {
    color: #ffffff;
}

#custom-navbar {
    width: calc(100% - 231px); 
    margin-left: 231px; 
    transition: margin-left 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    background-color: #232323;
}

#custom-navbar.minimized {
    width: calc(100% - 61px); 
    margin-left: 61px; 
    background-color: #232323;
}

.logo-image {
    width: auto;
    height: 50px;
}

#main-content {
    margin-left: 231px;
    transition: margin-left 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    background-color: #1c1c1c;
    text-decoration: none;
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 200;
}

#main-content.minimized {
    margin-left: 61px;
}

#main-content .table {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
}

#main-signin {
    background-color: #1c1c1c;
    text-decoration: none;
    color: rgba(56, 56, 56, 0.616);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 200;
}

.btn-login {
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    padding: 0.75rem 1rem;
  }

/* Donkere achtergrond en witte tekst voor de input */
.custom-input {
    background-color: #333;  /* Donkere achtergrond */
    color: #ffffff;  /* Witte tekst */
    border: 1px solid #444;  /* Subtiele randkleur */
}

/* Placeholder tekst in een lichtere kleur */
.custom-input::placeholder {
    color: #aaa;  /* Lichtere kleur voor placeholder  #aaa*/
}

/* Stijlen bij focus: groene rand en blur-effect */
.custom-input:focus {
    outline: none;  /* Standaard focusring van de browser verwijderen */
    border-color: #0300c4;  /* Groene rand bij focus  #0d51e2;*/
    box-shadow: 0 0 8px 2px #0d51e2;  /* Groene focusring met een blur-effect */
}
.card-body {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
}
.card-header {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
}

.bs-icon-fw {
    display: inline-block;
    width: 1.25em; /* Adjust as needed */
    text-align: end;
}