body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    color: #1e293b;
    line-height: 1.6;
}

/* Gradients suaves baseados na paleta */
.gradient-bg {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
}

.gradient-soft {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.gradient-accent {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Cards com sombras suaves */
.card-soft {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.card-soft:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

/* Botões suaves */
.btn-primary-soft {
    background: linear-gradient(135deg, #0369a1, #1e293b);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(14, 165, 233, 0.3);
}

.btn-primary-soft:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
    transform: translateY(-1px);
}

.btn-secondary-soft {
    background: #f8fafc;
    color: #475569;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    border: 1px solid #e2e8f0;
}

.btn-secondary-soft:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
}

/* Input fields suaves */
.input-soft {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    color: #1e293b;
}

.input-soft:focus {
    outline: none;
    border-color: #0ea5e9;
    background: white;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

/* Loading spinner suave */
.loading-spinner {
    border: 3px solid #e2e8f0;
    border-top: 3px solid #0ea5e9;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

.loading-spinner-sm {
    border: 2px solid #e2e8f0;
    border-top: 2px solid #0ea5e9;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Text styles refinados */
.text-primary-soft {
    color: #0ea5e9;
}

.text-secondary-soft {
    color: #64748b;
}

.text-muted-soft {
    color: #94a3b8;
}

/* Backgrounds suaves para status */
.bg-success-soft {
    background: #f0fdf4;
    color: #16a34a;
}

.bg-warning-soft {
    background: #fefce8;
    color: #ca8a04;
}

.bg-error-soft {
    background: #fef2f2;
    color: #dc2626;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Animações suaves */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tipografia refinada */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.font-display {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.05em;
}

/* User dropdown específicos */
#user-dropdown {
    animation: slideDown 0.2s ease-out;
    min-width: 200px;
}

#user-dropdown.hidden {
    animation: slideUp 0.15s ease-in;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Hover effects para dropdown items */
#user-dropdown a:hover {
    background-color: #f8fafc;
    transition: background-color 0.15s ease;
}

#user-dropdown a:hover i {
    color: #0ea5e9;
    transition: color 0.15s ease;
}

/* Mobile sidebar improvements */
.mobile-sidebar {
    backdrop-filter: blur(10px);
}

/* Header fixo e responsivo */
body {
    padding-top: 0;
}

/* Sidebar posicionamento - otimizado */
@media (min-width: 768px) {
    #sidebar {
        position: relative !important;
        transform: translateX(0) !important;
    }
}

@media (max-width: 767px) {
    #sidebar {
        position: fixed;
        z-index: 40;
    }
}

/* Header shadow quando scroll */
.header-shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-soft {
        border-radius: 0.5rem;
        margin: 0.5rem;
    }
    
    #user-dropdown {
        position: fixed;
        right: 1rem;
        top: 4rem;
        min-width: 250px;
    }
}

/* ===== TOASTR CUSTOMIZATIONS ===== */
/* Posicionamento no canto inferior direito */
.toast-bottom-right {
    bottom: 1rem !important;
    right: 1rem !important;
    position: fixed !important;
    z-index: 999999 !important;
}

/* Estilos customizados para toastr */
#toast-container {
    pointer-events: auto;
}

#toast-container .toast {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    padding: 1rem;
    margin-bottom: 0.5rem;
    min-width: 300px;
}

#toast-container .toast-success {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #22c55e;
    color: #166534;
}

#toast-container .toast-error {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #ef4444;
    color: #991b1b;
}

#toast-container .toast-info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: #0ea5e9;
    color: #0369a1;
}

#toast-container .toast-warning {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
    border-color: #eab308;
    color: #92400e;
}

/* Barra de progresso customizada */
#toast-container .toast-progress {
    background: rgba(255, 255, 255, 0.6);
    height: 3px;
    border-radius: 1.5px;
}

#toast-container .toast-success .toast-progress {
    background: #22c55e;
}

#toast-container .toast-error .toast-progress {
    background: #ef4444;
}

#toast-container .toast-info .toast-progress {
    background: #0ea5e9;
}

#toast-container .toast-warning .toast-progress {
    background: #eab308;
}

/* Botão de fechar customizado */
#toast-container .toast-close-button {
    right: 0.5rem;
    top: 0.5rem;
    font-size: 1rem;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

#toast-container .toast-close-button:hover {
    opacity: 1;
}

/* Animações suaves */
#toast-container .toast {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ============================================
   SweetAlert2 Customizations
   ============================================ */

/* Força estilização de botões para garantir cores */
.swal2-popup .swal2-actions button {
    color: white !important;
    border: none !important;
    cursor: pointer !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.swal2-popup .swal2-confirm {
    background-color: #0ea5e9 !important;
    color: white !important;
}

.swal2-popup .swal2-cancel {
    background-color: #6b7280 !important;
    color: white !important;
}

.swal2-popup .swal2-deny {
    background-color: #ef4444 !important;
    color: white !important;
}

/* Modal principal */
.swal2-popup {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    border-radius: 1rem !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    border: 1px solid #e2e8f0 !important;
    padding: 2rem !important;
}

/* Título */
.swal2-title {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    margin-bottom: 0.75rem !important;
}

/* Conteúdo/texto */
.swal2-html-container {
    color: #64748b !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 1rem 0 !important;
}

/* Ícones */
.swal2-icon {
    border: none !important;
    margin: 1rem auto 1.5rem auto !important;
}

.swal2-icon.swal2-success {
    color: #22c55e !important;
}

.swal2-icon.swal2-error {
    color: #ef4444 !important;
}

.swal2-icon.swal2-warning {
    color: #f59e0b !important;
}

.swal2-icon.swal2-info {
    color: #3b82f6 !important;
}

.swal2-icon.swal2-question {
    color: #8b5cf6 !important;
}

/* Toast containers nunca devem aplicar sombra/overlay de fundo */
.swal2-container.swal2-top-end,
.swal2-container.swal2-bottom-end,
.swal2-container.swal2-top-right,
.swal2-container.swal2-bottom-right {
    background: transparent !important;
    pointer-events: none;
}

.swal2-container.swal2-top-end .swal2-popup,
.swal2-container.swal2-bottom-end .swal2-popup,
.swal2-container.swal2-top-right .swal2-popup,
.swal2-container.swal2-bottom-right .swal2-popup {
    pointer-events: auto;
}

/* Botões */
.swal2-actions {
    margin-top: 1.5rem !important;
    gap: 0.75rem !important;
}

.swal2-confirm,
.swal2-cancel,
.swal2-deny {
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    padding: 0.625rem 1.25rem !important;
    border-radius: 0.5rem !important;
    border: none !important;
    transition: all 0.2s ease !important;
    margin: 0 !important;
}

/* Classes personalizadas para botões */
.swal2-confirm-custom,
.swal2-confirm {
    background: #0ea5e9 !important;
    color: white !important;
    box-shadow: 0 2px 4px rgba(14, 165, 233, 0.3) !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    padding: 0.625rem 1.25rem !important;
    border-radius: 0.5rem !important;
    border: none !important;
    transition: all 0.2s ease !important;
    margin: 0 !important;
}

.swal2-confirm-custom:hover,
.swal2-confirm:hover {
    background: #0284c7 !important;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4) !important;
    transform: translateY(-1px) !important;
}

.swal2-cancel-custom,
.swal2-cancel {
    background: #f1f5f9 !important;
    color: #64748b !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    padding: 0.625rem 1.25rem !important;
    border-radius: 0.5rem !important;
    border: none !important;
    transition: all 0.2s ease !important;
    margin: 0 !important;
}

.swal2-cancel-custom:hover,
.swal2-cancel:hover {
    background: #e2e8f0 !important;
    color: #475569 !important;
    transform: translateY(-1px) !important;
}

.swal2-deny-custom,
.swal2-deny {
    background: #ef4444 !important;
    color: white !important;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3) !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    padding: 0.625rem 1.25rem !important;
    border-radius: 0.5rem !important;
    border: none !important;
    transition: all 0.2s ease !important;
    margin: 0 !important;
}

.swal2-deny-custom:hover,
.swal2-deny:hover {
    background: #dc2626 !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4) !important;
    transform: translateY(-1px) !important;
}

/* Input fields */
.swal2-input {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    border: 1px solid #d1d5db !important;
    border-radius: 0.5rem !important;
    padding: 0.75rem !important;
    font-size: 0.875rem !important;
    color: #1f2937 !important;
    background: #ffffff !important;
}

.swal2-input:focus {
    border-color: #0ea5e9 !important;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1) !important;
    outline: none !important;
}

/* Loading spinner */
.swal2-loader {
    border-color: #0ea5e9 transparent #0ea5e9 transparent !important;
}

/* Toast notifications */
.swal2-toast {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

/* Timer progress bar */
.swal2-timer-progress-bar {
    background: #0ea5e9 !important;
}

/* Footer */
.swal2-footer {
    border-top: 1px solid #e5e7eb !important;
    margin-top: 1.5rem !important;
    padding-top: 1rem !important;
    color: #6b7280 !important;
    font-size: 0.75rem !important;
}

/* Dark overlay com fundo sólido suave */
.swal2-backdrop-show {
    background: rgba(15, 23, 42, 0.3) !important;
    /* Removido o backdrop-filter para manter fundo sólido */
}

/* Animações personalizadas */
.swal2-show {
    animation: swal2-show-custom 0.3s ease-out !important;
}

.swal2-hide {
    animation: swal2-hide-custom 0.15s ease-in !important;
}

@keyframes swal2-show-custom {
    0% {
        transform: scale(0.7) translateY(-20px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes swal2-hide-custom {
    0% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
    100% {
        transform: scale(0.5) translateY(20px);
        opacity: 0;
    }
}

/* ===== OBRAS - LAYOUT REORGANIZADO ===== */

/* Layout Grid para Visualização */
.letra-container {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    white-space: pre-line;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #334155;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
}

/* Info items organizados */
.info-item {
    margin-bottom: 1rem;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    display: block;
}

.info-value {
    font-size: 0.875rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.5;
}

.info-value.empty {
    color: #94a3b8;
    font-style: italic;
    font-weight: 400;
}

/* Checkboxes visuais mais elegantes */
.checkbox-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.checkbox-indicator.checkbox-true {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.checkbox-indicator.checkbox-false {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Status badges aprimorados */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    transition: all 0.2s ease;
}

.status-liberada {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.status-duplicidade {
    background-color: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.status-pendente {
    background-color: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.status-protocolada {
    background-color: #e0e7ff;
    color: #3730a3;
    border: 1px solid #c7d2fe;
}

.status-rascunho {
    background-color: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
}

/* Seções de visualização e formulários */
.view-container, .form-container {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.view-container:hover, .form-container:hover {
    box-shadow: 0 4px 20px -3px rgba(0, 0, 0, 0.1), 0 12px 25px -2px rgba(0, 0, 0, 0.05);
}

.view-section, .form-section {
    padding: 1.5rem;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.section-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.section-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
}

.section-header p {
    margin: 0;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

/* Campos de formulário */
.form-field {
    margin-bottom: 1.5rem;
}

.field-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.required-field::after {
    content: " *";
    color: #ef4444;
}

.field-input, .form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    background: white;
}

.field-input:focus, .form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.letra-input {
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    resize: vertical;
}

/* Checkbox personalizado */
.checkbox-field {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.checkbox-field:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.checkbox-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    accent-color: #6366f1;
}

.checkbox-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
}

.checkbox-field:has(.checkbox-input:checked) {
    background: #eef2ff;
    border-color: #6366f1;
}

.checkbox-field:has(.checkbox-input:checked) .checkbox-label {
    color: #6366f1;
    font-weight: 600;
}

/* Botões de formulário */
.btn-primary {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: white;
    color: #374151;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    border: 2px solid #e5e7eb;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

/* Responsividade melhorada */
@media (max-width: 1024px) {
    .view-container, .form-container {
        margin-bottom: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .section-icon {
        margin-right: 0;
    }
    
    .letra-container {
        padding: 1rem;
    }
    
    .view-section, .form-section {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .section-header h3 {
        font-size: 1rem;
    }
    
    .letra-container {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .info-value {
        font-size: 0.8125rem;
    }
    
    .field-input, .form-input, .form-select, .form-textarea {
        padding: 0.625rem 0.875rem;
        font-size: 0.8125rem;
    }
    
    .btn-primary, .btn-secondary, .btn-danger {
        padding: 0.75rem 1.25rem;
        font-size: 0.8125rem;
    }
}