/* DebtorProtection — style.css */

body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

h1 {
    color: #007bff;
}

/* -----------------------------------------------------------------------
   Sidebar layout
   ----------------------------------------------------------------------- */

#app-wrapper {
    min-height: 100vh;
}

#sidebar {
    width: 220px;
    min-width: 220px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}

#main-content {
    margin-left: 220px;
    min-height: 100vh;
    padding-top: 50px;
}

/* -----------------------------------------------------------------------
   Animations
   ----------------------------------------------------------------------- */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.25s ease-in-out;
}

/* -----------------------------------------------------------------------
   Tom Select
   ----------------------------------------------------------------------- */

.ts-control .item {
    color: var(--bs-code-color);
}
