.ve-session-notes {
    padding: 20px;
}
.notes-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.note {
    background: #fffbbd;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 48%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}
.note textarea {
    width: 100%;
    height: 300px;
    border: none;
    resize: none;
    background: transparent;
    font-family: inherit;
}
.note button {
    margin-top: 10px;
    padding: 6px 10px;
    border: none;
    background-color: #0d3b5d;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}
.note button.delete-note {
    background-color: #dc3232;
}
.add-note {
    margin-top: 20px;
    padding: 8px 16px;
    background-color: #B79367;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}








.ve-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 12px 18px;
    border-radius: 5px;
    font-size: 15px;
    color: #fff;
    background-color: #38a169;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    opacity: 0.95;
}
.ve-alert.error {
    background-color: #e53e3e;
}
