/* ============================================
   RESET CSS
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    background: var(--bg-page);
    min-height: 100vh;
    padding: var(--spacing-lg);
    line-height: 1.5;
    color: var(--gray-700);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

/* ============================================
   SCROLLBAR PERSONALIZADA
   ============================================ */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: var(--border-radius-sm);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: var(--border-radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
