@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

body {
    font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f5f5f9;
    color: #697a8d;
}

/* Sidebar */
.layout-wrapper {
    display: flex;
    flex: 1 1 auto;
    align-items: stretch;
    padding: 0;
}
.layout-container {
    display: flex;
    flex: 1 1 auto;
    align-items: stretch;
    width: 100%;
}
.layout-menu {
    width: 260px;
    background: #fff;
    box-shadow: 0 0.125rem 0.375rem 0 rgba(161, 172, 184, 0.12);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 10;
}
.app-brand {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
}
.app-brand-text {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #566a7f;
    margin-left: 0.5rem;
    text-transform: capitalize;
}
.menu-inner {
    padding-top: 1rem;
    flex: 1 1 auto;
    overflow-y: auto;
}
.menu-item {
    margin-bottom: 0.2rem;
}
.menu-link {
    display: flex;
    align-items: center;
    padding: 0.625rem 1rem;
    margin: 0 1rem;
    color: #697a8d;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: background-color 0.15s ease-in-out;
}
.menu-link:hover, .menu-item.active > .menu-link {
    color: #696cff;
    background-color: rgba(105, 108, 255, 0.16);
}
.menu-icon {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

/* Content Area */
.layout-page {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 100vh;
    padding-left: 260px; /* Sidebar width */
    width: 100%;
}
.content-wrapper {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

/* Navbar */
.layout-navbar {
    background: #fff;
    box-shadow: 0 2px 6px 0 rgba(67, 89, 113, 0.12);
    border-radius: 0.375rem;
    min-height: 3.875rem;
    margin: 1.125rem 1.5rem 0;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
}

/* Cards */
.card {
    border: 0;
    box-shadow: 0 0.125rem 0.25rem rgba(161, 172, 184, 0.2);
    border-radius: 0.5rem;
}
.card-header {
    background-color: transparent;
    border-bottom: 0;
    padding: 1.5rem;
}
.card-title {
    color: #566a7f;
    font-weight: 500;
}
.text-primary {
    color: #696cff !important;
}
.bg-primary {
    background-color: #696cff !important;
}
.btn-primary {
    background-color: #696cff;
    border-color: #696cff;
}
.btn-primary:hover {
    background-color: #5f61e6;
    border-color: #5f61e6;
}

/* Specific elements */
.avatar {
    width: 2.375rem;
    height: 2.375rem;
    border-radius: 50%;
}
