/* Zoom Pro Official Base Style - Clean Rebuild */
:root {
    --zoom-blue: #0E71EB;
    --zoom-blue-hover: #0b50a3;
    --zoom-dark: #2D2E33;
    --zoom-gray: #747487;
    --zoom-bg-light: #F5F7FA;
    --zoom-border: #E5E5E5;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--zoom-dark);
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar Style Zoom */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* Sidebar Custom Utilities */
.sidebar-link-active {
    background-color: rgba(14, 113, 235, 0.05);
    color: var(--zoom-blue) !important;
    border-left: 4px solid var(--zoom-blue);
    padding-left: 12px !important;
}

.sidebar-link {
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.sidebar-link:hover {
    background-color: #f8f9fa;
    color: var(--zoom-blue);
}

/* Zoom Buttons */
.btn-zoom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--zoom-blue);
    color: white !important;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    transition: background-color 0.2s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-zoom:hover {
    background-color: var(--zoom-blue-hover);
}

.btn-zoom-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--zoom-blue) !important;
    border: 1px solid var(--zoom-blue);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.btn-zoom-outline:hover {
    background-color: rgba(14, 113, 235, 0.05);
}

/* Tables style Zoom */
.zoom-table-container {
    background: white;
    border: 1px solid var(--zoom-border);
    border-radius: 12px;
    overflow: hidden;
}

.zoom-table-header {
    background: #f8f9fb;
    border-bottom: 1px solid var(--zoom-border);
    font-weight: 600;
    font-size: 13px;
    color: var(--zoom-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Card Zoom style */
.zoom-card {
    background: white;
    border: 1px solid var(--zoom-border);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Tabs Zoom style */
.zoom-tabs-container {
    display: flex;
    border-bottom: 1px solid var(--zoom-border);
    gap: 32px;
    margin-bottom: 24px;
}

.zoom-tab-item {
    padding: 12px 0;
    color: var(--zoom-gray);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    border-bottom: 2px solid transparent;
}

.zoom-tab-item:hover {
    color: var(--zoom-blue);
}

.zoom-tab-item.active {
    color: var(--zoom-blue);
    border-bottom: 2px solid var(--zoom-blue);
    font-weight: 600;
}