:root {
    --primary-color: #0d6efd;
    --dark-bg: #212529;
}

body {
    overflow-x: hidden;
}

#wrapper {
    display: flex;
}

#sidebar-wrapper {
    min-height: 100vh;
    margin-left: -15rem;
    transition: margin .25s ease-out;
}

#sidebar-wrapper .sidebar-heading {
    padding: 0.875rem 1.25rem;
    font-size: 1.2rem;
    font-weight: bold;
}

#sidebar-wrapper .list-group {
    width: 15rem;
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: 0;
}

#page-content-wrapper {
    min-width: 100vw;
}

#wrapper.toggled #page-content-wrapper {
    min-width: calc(100vw - 15rem);
}

@media (min-width: 768px) {
    #sidebar-wrapper {
        margin-left: 0;
    }
    #page-content-wrapper {
        min-width: 0;
        width: 100%;
    }
    #wrapper.toggled #sidebar-wrapper {
        margin-left: -15rem;
    }
}

.card-icon {
    font-size: 2.5rem;
    opacity: 0.3;
}

.contacto-rapido {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.btn-whatsapp:hover {
    transform: scale(1.1);
    color: white;
}

.status {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
}

.status-pendiente { background-color: #ffc107; color: #000; }
.status-en-curso { background-color: #0dcaf0; }
.status-completado { background-color: #198754; }
.status-requiere-accion { background-color: #dc3545; }