/* AI USAGE: Used AI to generate CSS style for this lab. */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 1.5em;
}

h1 {
    margin-top: 0;
    margin-bottom: 0.75em;
}

nav {
    display: flex;
    gap: 1em;
}

#status {
    position: fixed;
    top: 1em;
    right: 1.5em;
    font-weight: bold;
}

#notes-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75em;
    max-width: 420px;
}

.note {
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
    width: 100%;
}

.note-textarea {
    flex: 1;
    min-height: 6em;
    padding: 0.5em;
    font-family: inherit;
    font-size: 1em;
    resize: vertical;
}

.note-remove {
    background-color: #e07b39;
    color: white;
    border: none;
    padding: 0.5em 1em;
    border-radius: 4px;
    cursor: pointer;
}

#add-button {
    background-color: #4caf50;
    color: white;
    border: none;
    padding: 0.5em 1.5em;
    border-radius: 4px;
    cursor: pointer;
}

.note-display {
    background-color: #4a72b5;
    color: white;
    padding: 0.75em;
    border-radius: 4px;
    width: 100%;
    white-space: pre-wrap;
}

footer {
    margin-top: 2em;
}