﻿/* ============================================================
   GLOBAL — site.css
   Structura de baza: html, body, content, focus rings, card overflow
   ============================================================ */

/* Previne flash la schimbarea temei */
html {
    visibility: hidden;
    position: relative;
    min-height: 100%;
}

    html.theme-loaded {
        visibility: visible;
        transition: none;
    }

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin-bottom: 0;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    body.no-transitions * {
        transition: none !important;
        animation: none !important;
    }

/* Focus rings */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
    outline: none;
}

/* Content — margin-left pentru sidebar fix */
#content {
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 52px;
    margin-left: 260px;
    transition: margin-left 0.3s ease;
}

#sidebar.collapsed ~ #collapseBtn ~ #content {
    margin-left: 72px;
}

/* Carduri — overflow pentru scroll orizontal */
.card {
    overflow: hidden;
}

    .card .card-body.p-0 {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
