body {
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
}

.sidebar {
    width: 200px;
    background-color: #f4f4f4;
    padding: 15px;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
}

.sidebar ul li {
    margin: 10px 0;
}

.sidebar ul li a {
    text-decoration: none;
    color: #333;
}

.content {
    flex: 1;
    padding: 15px;
}


.form-check-input[type="checkbox"] {
    width: 2.25em;
    height: 1.25em;
    background-color: #dee2e6;
    border-radius: 1.25em;
    position: relative;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    transition: background-color 0.15s ease-in-out;
}

.form-check-input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: 0.125em;
    left: 0.125em;
    width: 1em;
    height: 1em;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.15s ease-in-out;
}

.form-check-input[type="checkbox"]:checked {
    background-color: #007bff;
}

.form-check-input[type="checkbox"]:checked::before {
    transform: translateX(1em);
}

.truncate-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em; /* Adjust based on line height */
}

.disabled-select {
    background-color: #d3d3d3; /* Color de fondo más oscuro */
    color: #495057; /* Color de texto más oscuro */
}

