.office-navbar {
    position: fixed;
    left: 16%;
    top: 0;
    width: 84%;
    height: 10vh;
    display: flex;
}

.office-sidebar {
    position: fixed;
    left: 0%;
    top: 0;
    width: 16%;
    height: 100vh;
    display: flex;
}

.office-principal {
    display: flex;
    margin-left: 16%;
    margin-top: 10vh;
    padding: 20px;
    width: calc(84% - 40px);
    min-height: calc(90vh - 40px);
}

.office-principal>div {
    display: flex;
    width: 100%;
    min-height: 100%;
}

.main-page {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.page-actions {
    padding: 15px;
    width: calc(100% - 30px);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgb(15 34 58 / 12%);
    margin-bottom: 20px;
}


.page-action-btn {
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    padding: 5px 10px;
    font-size: 14px;
    color: #fff;
    background-color: #4680ff;
}