.notes-header {
    margin-bottom: 2rem;
}

.notes-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.notes-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.tags-nav {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.tags-title {
    font-weight: bold;
    margin-right: 0.5rem;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-button {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tag-button:hover {
    background-color: #e0e0e0;
}

.tag-button.active {
    background-color: #9c27b0;
    color: white;
    border-color: #9c27b0;
}

.note-card {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.note-card:last-child {
    border-bottom: none;
}

.note-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.note-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.note-content {
    line-height: 1.6;
}

.note-content p {
    margin-bottom: 1rem;
}

.note-content blockquote {
    border-left: 3px solid #e0e0e0;
    padding-left: 1rem;
    margin-bottom: 1rem;
    color: #555;
}

.tag {
    display: inline-block;
    background-color: #f0f0f0;
    color: #666;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    margin-right: 0.3rem;
}

/*.footer-container {
    style=height:auto; 
}*/

.hidden {
    display: none;
}




@media (max-width: 768px) {
    .tags-nav {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tags-container {
        margin-top: 0.5rem;
    }
    
    .note-meta {
        flex-direction: column;
        gap: 0.3rem;
    }
}