/*
Theme Name: Light CRM Theme
Theme URI: https://app.dizee.in
Author: dizee Assist
Author URI: https://app.dizee.in
Description: A lightweight, professional CRM dashboard theme built with Bootstrap 5.
Version: 1.0.0
Text Domain: light-crm
*/

/* Layout Structure */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

#wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    min-height: 100vh;
    background: #212529;
    color: #fff;
    transition: all 0.3s;
    position: fixed;
    z-index: 1000;
}

#content {
    width: 100%;
    padding-left: 250px; /* Same as sidebar width */
    min-height: 100vh;
    transition: all 0.3s;
}

.sidebar-header {
    padding: 20px;
    background: #1a1d20;
}

#sidebar ul.nav li a {
    color: #adb5bd;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    transition: 0.2s;
}

#sidebar ul.nav li a:hover {
    color: #fff;
    background: #343a40;
}

#sidebar ul.nav li.current-menu-item a {
    color: #fff;
    background: #0d6efd;
}

@media (max-width: 768px) {
    #sidebar { margin-left: -250px; }
    #sidebar.active { margin-left: 0; }
    #content { padding-left: 0; }
}

/* CRM Components */
.card-stats {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}