.notes-app-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.input-container {
    margin-bottom: 20px;
}

.title-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.note-input {
    width: 100%;
    height: 120px;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

.save-button {
    background-color: #0073aa;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.save-button:hover {
    background-color: #005177;
}

.save-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.message {
    padding: 10px;
    margin-bottom: 20px;
    background-color: #f0f0f0;
    border-left: 4px solid #0073aa;
}

.notes-list {
    display: grid;
    gap: 20px;
}

.note-card {
    position: relative;
    padding: 15px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.note-card h3 {
    margin: 0 0 5px 0;
}

.note-date {
    font-size: 0.8em;
    color: #666;
    margin-bottom: 10px;
}

.delete-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #dc3232;
    color: white;
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
}

.delete-button:hover {
    background-color: #b32d2d;
}
