@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

#modal-notes-informations {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    background: #F3F6FA;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .18);
    z-index: 99999;
    width: 80vw;
    max-width: 80vw;
    max-height: 80vh;
    padding: 0;
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

#modal-notes-informations.visible {
    opacity: 1;
    transform: translate(-50%, -50%);
    pointer-events: all;
}

#modal-notes-informations * {
    font-family: 'Inter', Arial, sans-serif;
}

#modal-notes-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px 14px;
    border-bottom: 1px solid #E2E8F0;
    flex-shrink: 0;
}

#modal-notes-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
}

#modal-notes-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #64748B;
    line-height: 1;
    border-radius: 6px;
    transition: background .15s;
}

#modal-notes-close:hover {
    background: #E2E8F0;
    color: #1E293B;
}

#modal-notes-body {
    padding: 24px 28px;
    flex: 1;
    min-height: 0;
    overflow-x: hidden;
}

#modal-notes-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 14px 28px 18px;
    border-top: 1px solid #E2E8F0;
    flex-shrink: 0;
}

#modal-notes-btn-lu {
    background: #F87337;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
}

#modal-notes-btn-lu:hover {
    background: #e05e1e;
}

#modal-notes-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 99998;
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

#modal-notes-backdrop.visible {
    opacity: 1;
    pointer-events: all;
}

.inter {
    font-family: 'Inter', Arial, sans-serif;
}

.inter-700 {
    font-weight: 700;
}

.inter-600 {
    font-weight: 600;
}

.inter-800 {
    font-weight: 800;
}

.inter-500 {
    font-weight: 500;
}

.inter-400 {
    font-weight: 400;
}