.notes-page-wrapper {
    max-width: 70vw;
    margin: 0 auto;
    padding: 20px;
}

.notes-doc-container {
    width: 100%;
    max-width: 100%;
    padding: 30px;
    background-color: #fff;
    box-sizing: border-box;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.notes-doc-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

.notes-doc-container h4 {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 10px;
    color: #555;
}

.siya-notes-logo {
    width: 50px !important;
    height: 50px !important;
    border-radius: 10px;
    margin: unset !important;
}

.notes-title-section h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.notes-version {
    font-size: 13px;
    color: #666;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
    display: inline-block;
}

.notes-doc-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.notes-section {
    padding-bottom: 10px;
}

.notes-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #437efc;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.notes-section p {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.notes-overview {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.notes-list {
    margin: 0;
    padding-left: 20px;
}

ol.notes-list {
    list-style-type: decimal;
}

ul.notes-list {
    list-style-type: disc;
}

.notes-list li {
    font-size: 13px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 6px;
}

.notes-list li::marker {
    color: #437efc;
}

.notes-list li strong {
    color: #333;
}

.notes-footer {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 10px;
}

.notes-footer p {
    margin-bottom: 5px;
}

.notes-footer p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .notes-page-wrapper {
        padding: 10px;
    }

    .notes-doc-container {
        padding: 20px;
        border-radius: 8px;
    }

    .notes-title-section h1 {
        font-size: 20px;
    }

    .notes-section h3 {
        font-size: 15px;
    }
}
