/* --- Note Taking Styles --- */
.proshna-note-wrapper {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.proshna-note-toggle-btn, .proshna-add-note-btn {
    background: none;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    margin-right: 10px;
}
.proshna-note-toggle-btn:hover, .proshna-add-note-btn:hover {
    background-color: #f0f0f0;
    color: #000;
}

.proshna-note-content {
    margin-top: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background-color: #fdfdfd;
}

.proshna-note-textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 10px;
    resize: vertical;
}

.proshna-note-save-btn {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
}

.proshna-note-status {
    margin-left: 10px;
    font-size: 0.9em;
    font-style: italic;
}
.proshna-note-status.success {
    color: green;
}
.proshna-note-status.error {
    color: red;
}

/* --- My Notes tab on Profile Page --- */
.proshna-notes-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.proshna-note-item {
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 15px;
}

.proshna-note-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.proshna-note-question-link {
    font-weight: bold;
    text-decoration: none;
    color: #005a87;
}
.proshna-note-question-link:hover {
    text-decoration: underline;
}

.proshna-note-date {
    font-size: 0.9em;
    color: #777;
}

.proshna-note-item-content {
    line-height: 1.6;
}
