.navigation-example {
    display: flex;
}

.total-info {
    margin-bottom: 1rem;
    padding-left: 15px;
}

.s-container {
    width: 100%;
    height: 100vh;
    display: flex;
}

.s-sidebar {
    width: 200px;
    height: 100%;
    background-color: #000000;
    color: white;
}

.s-main {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.s-navbar {
    height: 50px;
    background-color: #000000;
    color: white;
    display: flex;
    align-items: center;
    padding: 0 20px;
    justify-content: space-between;
}

.s-navbar > div:nth-of-type(1) {
    font-size: 20px;
    font-weight: bold;
}

.s-content {
    flex: 1;
    background-color: #F0F0F0;
    padding: 15px;
    height: 0;
    overflow-y: scroll;
}

.s-sidebar-item {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.s-sidebar-item-active {
    background-color: #007AFF;
    color: white;
}

.s-content-main {
    background-color: white;
    overflow-y: scroll;
    padding: 20px;
    border-radius: 10px;
}

.s-login-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-login-form {
    width: 500px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
    padding: 30px;
}

.login-btn {
    width: 100%;
}

.s-title {
    font-weight: bold;
    text-align: center;
    font-size: 20px;
}
