/* Centered Container */
.notes-container {
    width: 80%;
    height: 80vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    background-color: #fdfdfd;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .notes-container {
        width: 95%;
        height: auto;
    }
}

/* Header styling */
.notes-header {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 0.5rem;
    text-align: center;
    background-color: #f4f4f4;
    border-radius: 4px 4px 0 0;
}

/* Body styling */
.notes-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Scrollbar styling for notes-body */
.notes-body::-webkit-scrollbar {
    width: 8px;
}
.notes-body::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}
.notes-body::-webkit-scrollbar-track {
    background: #f1f1f1;
}
