/* css/views/notes.css */

.notes-header {
    text-align: center;
    margin-bottom: 2rem;
}

.notes-header h2 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.notes-header p {
    color: var(--white);
    opacity: 0.8;
    font-size: 1.1rem;
}

.notes-list {
    display: grid;
    gap: 1rem;
}

.note-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.note-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.note-item.special {
    border-color: var(--accent-gold);
    background: rgba(255, 193, 7, 0.1);
}

.note-date {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.note-text {
    font-size: 1.1rem;
    line-height: 1.5;
}