 
        :root {
            --primary-color: #ff729a;
            --secondary-color: #d9294f;
            --accent-color: #4895ef;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --border-radius: 0;
            --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }


        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8f9fa;
        }

        footer {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            text-align: center;
            padding: 10px 0;
            margin-top: auto;
        }

        .destaque {

            color: #fb1553 !important;

        }

        .navbar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        .navbar-brand,
        .nav-link {
            color: #fff !important;
            font-weight: 500;
        }


        .container1 {
            margin-top: 20px;
        }

        /* Remove bordas e efeitos padrão */
        .navbar-toggler {
            border: none !important;
            outline: none !important;
            box-shadow: none !important;
            width: 30px;
            height: 33px;
            position: relative;
            transition: all 0.3s ease;
        }

        /* Estrutura das linhas do hambúrguer */
        .navbar-toggler span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: white;
            border-radius: 0;
            transition: all 0.3s ease;
        }

        /* Linhas posicionadas */
        .navbar-toggler span:nth-child(1) {
            top: 6px;
        }

        .navbar-toggler span:nth-child(2) {
            top: 14px;
        }

        .navbar-toggler span:nth-child(3) {
            top: 22px;
        }

        /* Estado ativo (quando menu aberto → vira X) */
        .navbar-toggler:not(.collapsed) span:nth-child(1) {
            transform: rotate(45deg);
            top: 14px;
        }

        .navbar-toggler:not(.collapsed) span:nth-child(2) {
            opacity: 0;
        }

        .navbar-toggler:not(.collapsed) span:nth-child(3) {
            transform: rotate(-45deg);
            top: 14px;
        }

        /* Transição suave do menu */
        .collapse {
            transition: all 0.4s ease;
        }

        /* Estilo dos links */
        .nav-link {
            color: white !important;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .nav-link:hover {
            color: #dfe6ff !important;
        }

        td {
            color: gray !important;
            vertical-align: middle;
        }

        .escala-card {
            transition: all 0.3s ease;
        }

        .escala-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
        }

        label {

            font-weight: bold;
            color: #808080;
        }

        .card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;

        }


        .card:hover {
            /* transform: translateY(-5px); */
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }


        .card-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            font-weight: 600;
            font-size: 1.3rem;
            border-bottom: none;
        }

        .modal-content {
            border: none;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }


        .modal-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-bottom: none;
            border-radius: var(--border-radius);
            padding: 0.8rem;
            position: relative;
        }


        .modal-title {
            font-weight: 600;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
        }

        .modal-title i {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-footer {
            border-top: 1px solid #e9ecef;
            padding: 1rem;
            background-color: #f8f9fa;
        }

        .form-control:focus {
            border-color: #516bed;
            box-shadow: 0 0 0 0.2rem rgba(81, 107, 237, 0.25);
        }

        .form-select {
            border-radius: 8px;
            padding: 0.5rem 0.8rem;
            border: 1px solid #dee2e6;
            transition: var(--transition);
        }


        .form-select:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.15);
        }


        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border: none;
        }

        .btn-primary:hover {
            /* transform: translateY(-2px); */
            box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
        }

        .btn-success {
            background-color: #18d65e;
            border: none;
        }

        .btn-success:hover {
            background-color: #12c01e;
            box-shadow: 0 4px 12px rgba(101, 233, 94, 0.3);
        }

        .btn-secondary {
            background-color: #6c757d;
            border: none;
        }

        .btn-secondary:hover {
            box-shadow: 0 4px 12px rgba(86, 87, 88, 0.3);
        }

        .btn-close {
            filter: invert(1);
            opacity: 0.8;
        }

        .btn-close:hover {
            opacity: 1;
        }

        .role-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .role-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            font-size: 17.5px;
            align-items: center;
            justify-content: center;
            margin-right: 8px;
        }

        .role-card {
            background: white;
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.069);
            border: 1px solid #e9ecef;
            transition: var(--transition);
        }

        .role-card:hover {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.294);
        }

        .day-shift .role-icon {
            background: rgba(255, 145, 0, 0.15);
            color: #ff8826;
        }

        .role-card.day-shift {
            border-top: 4px solid #ff8826;
        }

        .night-shift .role-icon {
            background: rgba(67, 97, 238, 0.15);
            color: #4361ee;
        }

        .role-card.night-shift {
            border-top: 4px solid #4361ee;
        }

        .role-title {
            color: gray;
            font-weight: 600;
            margin-bottom: 0;
            font-size: 1.1rem;
        }

        .fa-gear {

            font-size: 1rem;
        }

        .toggle-password {

            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
           

        }

        .toggle-password:hover {
            color: #0d6efd !important;
        }

        /* Desktop */
        @media (min-width: 768px) {
            .mobile-view {
                display: none;
            }

            .header-container {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
            }
        }

        /* Mobile */
        @media (max-width: 767px) {
            .desktop-view {
                display: none;
            }

            .header-container {
                flex-direction: column;
            }

            .header-actions {
                margin-top: 1rem;
                width: 100%;
            }

            h5 {

                font-size: 18px;
            }

            .header-actions .btn {
                width: 100%;
                margin-bottom: 0.5rem;
            }

            .escala-card {
                margin-bottom: 0.8rem;
                border-radius: 10px;
            }

            .card-body {
                padding: 1rem;
            }
        }
   