/* Sidebar Styles */
.wrapper {
    display: flex;
    width: 100%;
}

input[readonly], textarea[readonly] {
    color: #6c757d; /* Grijs (#6c757d is een Bootstrap secondary-kleur) */
    background-color: #f8f9fa; /* Lichte achtergrond (optioneel) */
}

#sidebar {
    min-width: 280px;
    max-width: 280px;
    min-height: 100vh;
    transition: all 0.3s;
}

#sidebar.active {
    margin-left: -280px;
}

#content {
    width: 100%;
    transition: all 0.3s;
}

#content.active {
    margin-left: -250px;
}

/* Sidebar Links */
#sidebar .components a {
    padding: 10px;
    font-size: 1.1em;
    display: block;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

#sidebar .components a:hover {
    background: #7386D5;
}

/* Cards */
.card {
    margin-bottom: 1rem;
    border: none;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.card-body {
    padding: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        margin-left: 0;
    }
    #content.active {
        margin-left: 250px;
    }
}

/* Add these styles for the user profile section */
.user-profile {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.user-profile img {
    border: 2px solid rgba(255,255,255,0.2);
}

.user-profile .dropdown-toggle {
    width: 100%;
    text-align: left;
    margin-top: 0.5rem;
}

.user-profile .dropdown-menu {
    width: 100%;
}