/* Main Container */
.nlcq-form-wrapper,
.nlcq-feed {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

/* Form Styles */
#nlcq-form-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nlcq-field {
    margin-bottom: 15px;
}

.nlcq-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.nlcq-field input,
.nlcq-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

#nlcq-submit-btn {
    /* Inherit theme styles where possible, but keep some base structure */
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
}

#nlcq-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#nlcq-submit-btn:hover:not(:disabled) {
    background: #d81b60;
}

#nlcq-message {
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
}

.nlcq-success {
    color: green;
}

.nlcq-error {
    color: red;
}

.nlcq-disclaimer {
    color: #666;
    margin-top: 10px;
    text-align: center;
}

/* Feed Styles */
.nlcq-card {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #e91e63;
}

.nlcq-card-content {
    font-size: 1.1em;
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.6;
}

.nlcq-card-meta {
    font-size: 0.9em;
    color: #888;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.nlcq-tags {
    color: #e91e63;
    font-weight: 500;
}

.nlcq-card-actions {
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.nlcq-like-btn {
    background: none;
    border: 1px solid #e91e63;
    color: #e91e63;
    padding: 5px 15px;
    border-radius: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.nlcq-like-btn:hover,
.nlcq-like-btn.liked {
    background: #e91e63;
    color: #fff;
}

.nlcq-like-btn:hover .nlcq-icon-heart,
.nlcq-like-btn.liked .nlcq-icon-heart {
    fill: #fff;
}

.nlcq-icon-heart {
    width: 18px;
    height: 18px;
    fill: #e91e63;
    transition: fill 0.2s;
}

/* Chart Container */
.nlcq-chart-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .nlcq-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}