body {
    background-color: #ffffff;
}

:root {
    --primary-color: #485fc7;
}

html, body {
    background-color: #ffffff;
    min-height: 100vh;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section {
    padding: 1.5rem;
}

.card {
    box-shadow: 0 2px 3px rgba(10,10,10,0.1);
    border-radius: 6px;
}

.table {
    background-color: white;
}

.title, .subtitle {
    color: #363636;
}

.pagination-link.is-current {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

a {
    color: var(--primary-color);
}

.breadcrumb {
    margin-bottom: 1rem;
}

.switch {
    display: inline-flex;
    align-items: center;
    position: relative;
    vertical-align: middle;
    margin-bottom: 0.5em;
}

.switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.switch .slider {
    position: relative;
    display: inline-block;
    width: 3rem;
    height: 1.75rem;
    background-color: #dbdbdb;
    border-radius: 1rem;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.switch .slider::before {
    content: "";
    position: absolute;
    width: 1.25rem;
    height: 1.25rem;
    left: 0.25rem;
    bottom: 0.25rem;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.switch input:checked + .slider {
    background-color: #485fc7;
}

.switch input:checked + .slider::before {
    transform: translateX(1.25rem);
}

.switch input:focus + .slider {
    box-shadow: 0 0 0 0.125rem rgba(72, 95, 199, 0.25);
}

.switch.is-large {
    transform: scale(1.5);
    margin-right: 1rem;
    vertical-align: middle;
}

.switch.is-large .slider {
    width: 3.5rem;
    height: 2rem;
}

.switch.is-large .slider::before {
    width: 1.5rem;
    height: 1.5rem;
}

.switch.is-large input:checked + .slider::before {
    transform: translateX(1.5rem);
}

.button .icon img {
    width: 16px;
    height: 16px;
}

.button.is-small .icon img {
    width: 14px;
    height: 14px;
}

.button.is-primary .icon img {
    filter: brightness(0) invert(1);
}

.button.is-success.is-light .icon img {
    filter: invert(42%) sepia(93%) saturate(1039%) hue-rotate(78deg) brightness(94%) contrast(90%);
}

.button.is-danger.is-light .icon img {
    filter: invert(39%) sepia(86%) saturate(1363%) hue-rotate(312deg) brightness(90%) contrast(102%);
}

.button.is-info.is-light .icon img {
    filter: invert(62%) sepia(98%) saturate(1374%) hue-rotate(154deg) brightness(94%) contrast(100%);
}

.button.is-success.is-outlined .icon img {
    filter: invert(42%) sepia(93%) saturate(1039%) hue-rotate(78deg) brightness(94%) contrast(90%);
}

.button.is-info.is-outlined .icon img {
    filter: invert(62%) sepia(98%) saturate(1374%) hue-rotate(154deg) brightness(94%) contrast(100%);
}

.button.is-outlined .icon img {
    filter: brightness(0) invert(0.4);
}

.button.is-light .icon img {
    filter: brightness(0) invert(0.5);
}
