@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
@source '../../storage/framework/views/*.php';
@source '../**/*.blade.php';
@source '../**/*.js';

@theme {
    --font-sans: 'Instrument Sans', ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
        'Segoe UI Symbol', 'Noto Color Emoji';
}


.main-header .logo {
  background-color: #d51006;
}

.agassete-bg {
  background-color: #d51006;
}

[data-overlay]::before {
  background: #d51006 !important;
}

[data-overlay="6"]::before {
  background: #d51006 !important;
  opacity: 1 !important;
}

.logo-login {
  max-width: 200px;
  background: white !important;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-box {
    text-align: center;
    color: #fff;
    font-size: 18px;
}

  #loading-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.8);
        display: none;
        z-index: 9999;
        align-items: center;
        justify-content: center;
    }

    .loading-spinner {
        border: 6px solid #f3f3f3;
        border-top: 6px solid #e74c3c;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: spin 1s linear infinite;
    }

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