/* /Components/Loading/Loading.razor.rz.scp.css */
.loading-backdrop[b-oxa3vxj68u] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5); /* backdrop escuro */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* garantir que fique acima dos outros elementos */
}

.loading-message[b-oxa3vxj68u] {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}
/* /Components/Modal/Modal.razor.rz.scp.css */
.modal-overlay[b-6f6tzgmyhj] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content[b-6f6tzgmyhj] {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

    .modal-content.small[b-6f6tzgmyhj] {
        width: 300px;
    }

    .modal-content.medium[b-6f6tzgmyhj] {
        width: 500px;
    }

    .modal-content.large[b-6f6tzgmyhj] {
        width: 800px;
    }

.modal-header[b-6f6tzgmyhj] {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .modal-header h3[b-6f6tzgmyhj] {
        margin: 0;
        font-size: 1.25rem;
        font-weight: 600;
    }

.close-button[b-6f6tzgmyhj] {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #4b5563;
}

    .close-button:hover[b-6f6tzgmyhj] {
        color: #111827;
    }

.modal-body[b-6f6tzgmyhj] {
    padding: 16px;
}

.modal-footer[b-6f6tzgmyhj] {
    padding: 16px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

@media (max-width: 640px) {
    .modal-content[b-6f6tzgmyhj] {
        width: 90%;
        margin: 10px;
    }
}
/* /Components/SortableList/SortableList.razor.rz.scp.css */
/* 
  you need the ::deep identifier if you are using scoped styles like this
  because scoped styles are only applied to markup in the component, not
  to the markup inside the render fragment.
*/

[b-vtm64f8uhl] .sortable-ghost {
    visibility: hidden;
}

[b-vtm64f8uhl] .sortable-fallback {
    opacity: 1 !important
}
/* /Components/Tags/TagsInput.razor.rz.scp.css */
.tags-input[b-mgosq0bmv2] {
    border: 1px solid #ccc;
    padding: 0.5rem;
    border-radius: 4px;
}

.tag-list[b-mgosq0bmv2] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.tag[b-mgosq0bmv2] {
    background-color: #007bff;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
}

    .tag button[b-mgosq0bmv2] {
        background: transparent;
        border: none;
        color: white;
        margin-left: 0.3rem;
        cursor: pointer;
    }
/* /Layout/EditorLayout.razor.rz.scp.css */
.page[b-jh048ouu1o] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-jh048ouu1o] {
    flex: 1;
}

.sidebar[b-jh048ouu1o] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-jh048ouu1o] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-jh048ouu1o]  a, .top-row[b-jh048ouu1o]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-jh048ouu1o]  a:hover, .top-row[b-jh048ouu1o]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-jh048ouu1o]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-jh048ouu1o] {
        justify-content: space-between;
    }

    .top-row[b-jh048ouu1o]  a, .top-row[b-jh048ouu1o]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-jh048ouu1o] {
        flex-direction: row;
    }

    .sidebar[b-jh048ouu1o] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-jh048ouu1o] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-jh048ouu1o]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-jh048ouu1o], article[b-jh048ouu1o] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/EmptyLayout.razor.rz.scp.css */
.page[b-g6dcr4yvmp] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-g6dcr4yvmp] {
    flex: 1;
}

.sidebar[b-g6dcr4yvmp] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-g6dcr4yvmp] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-g6dcr4yvmp]  a, .top-row[b-g6dcr4yvmp]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-g6dcr4yvmp]  a:hover, .top-row[b-g6dcr4yvmp]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-g6dcr4yvmp]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-g6dcr4yvmp] {
        justify-content: space-between;
    }

    .top-row[b-g6dcr4yvmp]  a, .top-row[b-g6dcr4yvmp]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-g6dcr4yvmp] {
        flex-direction: row;
    }

    .sidebar[b-g6dcr4yvmp] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-g6dcr4yvmp] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-g6dcr4yvmp]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-g6dcr4yvmp], article[b-g6dcr4yvmp] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/LoginLayout.razor.rz.scp.css */
.page[b-io1o697y85] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-io1o697y85] {
    flex: 1;
}

.sidebar[b-io1o697y85] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-io1o697y85] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-io1o697y85]  a, .top-row[b-io1o697y85]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-io1o697y85]  a:hover, .top-row[b-io1o697y85]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-io1o697y85]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-io1o697y85] {
        justify-content: space-between;
    }

    .top-row[b-io1o697y85]  a, .top-row[b-io1o697y85]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-io1o697y85] {
        flex-direction: row;
    }

    .sidebar[b-io1o697y85] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-io1o697y85] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-io1o697y85]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-io1o697y85], article[b-io1o697y85] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-x7c3mc7fp6] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-x7c3mc7fp6] {
    flex: 1;
}

.sidebar[b-x7c3mc7fp6] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-x7c3mc7fp6] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-x7c3mc7fp6]  a, .top-row[b-x7c3mc7fp6]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-x7c3mc7fp6]  a:hover, .top-row[b-x7c3mc7fp6]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-x7c3mc7fp6]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-x7c3mc7fp6] {
        justify-content: space-between;
    }

    .top-row[b-x7c3mc7fp6]  a, .top-row[b-x7c3mc7fp6]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-x7c3mc7fp6] {
        flex-direction: row;
    }

    .sidebar[b-x7c3mc7fp6] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-x7c3mc7fp6] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-x7c3mc7fp6]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-x7c3mc7fp6], article[b-x7c3mc7fp6] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-h2pnm7ma8u] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-h2pnm7ma8u] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-h2pnm7ma8u] {
    font-size: 1.1rem;
}

.bi[b-h2pnm7ma8u] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-h2pnm7ma8u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-h2pnm7ma8u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-h2pnm7ma8u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-music-note-beamed[b-h2pnm7ma8u] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-music-note-beamed' viewBox='0 0 16 16'%3E%3Cpath d='M6 13c0 1.105-1.12 2-2.5 2S1 14.105 1 13s1.12-2 2.5-2 2.5.896 2.5 2m9-2c0 1.105-1.12 2-2.5 2s-2.5-.895-2.5-2 1.12-2 2.5-2 2.5.895 2.5 2'/%3E%3Cpath fill-rule='evenodd' d='M14 11V2h1v9zM6 3v10H5V3z'/%3E%3Cpath d='M5 2.905a1 1 0 0 1 .9-.995l8-.8a1 1 0 0 1 1.1.995V3L5 4z'/%3E%3C/svg%3E");
}

.nav-item[b-h2pnm7ma8u] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-h2pnm7ma8u] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-h2pnm7ma8u] {
        padding-bottom: 1rem;
    }

    .nav-item[b-h2pnm7ma8u]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-h2pnm7ma8u]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-h2pnm7ma8u]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-h2pnm7ma8u] {
        display: none;
    }

    .collapse[b-h2pnm7ma8u] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-h2pnm7ma8u] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Musicas/Components/ChromaticScaleSelector.razor.rz.scp.css */
.chromatic-scale-selector[b-itn3xq0shr] {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
}

    .chromatic-scale-selector label[b-itn3xq0shr] {
        margin-top: 10px;
    }

    .chromatic-scale-selector .form-select[b-itn3xq0shr] {
        margin-top: 5px;
    }
/* /Pages/Musicas/Components/NumberSpinner.razor.rz.scp.css */
.number-spinner[b-365tep6b54] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    max-width: 90px;
    margin: 0 auto;
}

    .number-spinner .form-control[b-365tep6b54] {
        width: 30px;
        text-align: center;
        font-size: 1.2rem;
    }

    .number-spinner .btn[b-365tep6b54] {
        font-size: 1.2rem;
        width: 30px;
    }
