body {
    font-family: 'Roboto Condensed', sans-serif;
    background: #f5f8fa;
    color: #181c32;
}

/* layout */
.main-wrapper {
    display: flex;
}

.content {
    flex: 1;
    padding: 25px 30px;
}

/* sidebar */
.sidebar {
    width: 260px;
    background: #ffffff;
    border-right: 1px solid #eff2f5;
    padding: 20px;
}

/* logo */
.logo {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
}

/* menu */
.sidebar ul li {
    margin-bottom: 8px;
}

.sidebar ul li a {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    color: #5e6278;
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
}

.sidebar ul li.active a,
.sidebar ul li a:hover {
    background: #f1faff;
    color: #009ef7;
}

/* topbar */
.topbar {
    background: #ffffff;
    border: 1px solid #eff2f5;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

/* cards */
.card-box {
    background: #ffffff;
    border: 1px solid #eff2f5;
    border-radius: 10px;
    padding: 20px;
}

/* table */
.table {
    margin-bottom: 0;
}

.table th {
    font-size: 12px;
    color: #a1a5b7;
    font-weight: 600;
}

.table td {
    font-size: 14px;
}

/* buttons */
.btn-primary {
    background: #009ef7;
    border: none;
}

.btn-primary:hover {
    background: #0086d1;
}

/* inputs */
.form-control {
    border: 1px solid #e4e6ef;
    border-radius: 8px;
    height: 40px;
    font-size: 14px;
}

.form-control:focus {
    border-color: #009ef7;
    box-shadow: none;
}

/* modal */
.modal-content {
    border-radius: 10px;
    border: none;
}