/* ==========================================================================
   SriL Biz Global Style Overrides - Shared Across All Workspace Pages
   ========================================================================== */

/* Smooth scrolling experience across pages */
html {
    scroll-behavior: smooth;
}

/* Custom Modern Minimal Scrollbar styling for a premium aesthetic */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9; 
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

/* Modal UI Transitions Engine */
.modal-overlay {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: all 0.3s ease-in-out;
}

.modal-content {
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* State when modal is running and viewable */
body.modal-open {
    overflow: hidden;
}

body.modal-open .modal-content {
    transform: scale(1);
    opacity: 1;
}

/* Custom Interactive Focus States for Form Elements */
input:focus, select:focus, textarea:focus {
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
    outline: none !important;
}