@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --zoho-dark: #313949;
    --zoho-blue: #4a90e2;
    --zoho-bg: #f4f7f9;
    --zoho-border: #e0e6ed;
    --zoho-text: #444444;
    --zoho-text-light: #777777;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--zoho-bg);
    color: var(--zoho-text);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Zoho Top Navbar */
.navbar {
    background-color: var(--zoho-dark) !important;
    color: white !important;
    padding: 0 15px !important;
    height: 50px;
    border-bottom: none;
}

.navbar-brand {
    color: white !important;
    font-weight: 700;
    font-size: 1.2rem;
    padding-right: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0 15px !important;
    line-height: 50px;
}

.nav-link:hover, .nav-link.active {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.1);
}

.dropdown-menu {
    border-radius: 4px;
    padding: 8px 0;
    margin-top: 0;
}

.dropdown-item {
    font-size: 0.85rem;
    color: var(--zoho-text);
}

.dropdown-item:hover {
    background-color: var(--zoho-bg);
    color: var(--zoho-blue);
}

.dropdown-toggle::after {
    vertical-align: middle;
}

/* Main Content Area */
.content-area {
    padding: 25px;
    min-height: calc(100vh - 50px);
}

/* Zoho Cards */
.card {
    background: #ffffff;
    border: 1px solid var(--zoho-border);
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.card-header {
    background: transparent;
    border-bottom: 1px solid var(--zoho-border);
    padding: 15px 20px;
    font-weight: 600;
    color: var(--zoho-dark);
}

/* Buttons */
.btn-primary {
    background-color: var(--zoho-blue);
    border-color: var(--zoho-blue);
    border-radius: 3px;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 0.85rem;
}

.btn-primary:hover {
    background-color: #357abd;
    border-color: #357abd;
}

/* Tables */
.table {
    background: white;
    font-size: 0.9rem;
}

.table thead th {
    background-color: #f8f9fb;
    color: var(--zoho-text-light);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    border-bottom: 1px solid var(--zoho-border);
    padding: 12px 15px;
}

.table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--zoho-border);
}

/* Forms */
.form-control {
    border-radius: 3px;
    border: 1px solid var(--zoho-border);
    font-size: 0.9rem;
    padding: 8px 12px;
}

.form-control:focus {
    border-color: var(--zoho-blue);
    box-shadow: none;
}

/* Dashboard Widgets */
.widget-title {
    font-size: 0.8rem;
    color: var(--zoho-text-light);
    font-weight: 600;
    margin-bottom: 10px;
}

.widget-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--zoho-dark);
}

.text-accent {
    color: var(--zoho-blue);
}