.ets-event-thread {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.ets-event-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.ets-event-meta {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    font-size: 0.9em;
    color: #666;
}

.ets-event-status.closed {
    color: #d63638;
    font-weight: bold;
}

.ets-post {
    margin: 20px 0;
    padding: 15px;
    border-left: 4px solid #0073aa;
    background: #f8f9fa;
    border-radius: 4px;
}

.ets-post-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.ets-post-author {
    font-weight: bold;
    color: #1d2327;
}

.ets-post-date {
    color: #646970;
}

.ets-post-label {
    padding: 2px 8px;
    border-radius: 12px;
    color: white;
    font-size: 0.8em;
}

.ets-post-paid {
    background: #00a32a;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8em;
}

.ets-post-content {
    margin: 10px 0;
    line-height: 1.6;
}

.ets-post-footer {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.ets-post-replies {
    margin-left: 30px;
    padding-left: 20px;
    border-left: 2px dashed #ddd;
}

.ets-form-container {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
}

.ets-form-group {
    margin-bottom: 15px;
}

.ets-form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.ets-form-input,
.ets-form-textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
}

.ets-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.ets-char-count {
    text-align: right;
    font-size: 0.9em;
    color: #646970;
    margin-top: 5px;
}

.ets-char-count.warning {
    color: #d63638;
}

.ets-submit-button {
    background: #2271b1;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
}

.ets-submit-button:hover {
    background: #135e96;
}

.ets-share-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.ets-share-thread,
.ets-share-post,
.ets-reply-button {
    background: #f0f0f1;
    border: 1px solid #8c8f94;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
}

.ets-share-thread:hover,
.ets-share-post:hover,
.ets-reply-button:hover {
    background: #e0e0e0;
}

.ets-search-results {
    max-width: 800px;
    margin: 0 auto;
}

.ets-search-form {
    margin-bottom: 30px;
}

.ets-search-input {
    width: 100%;
    padding: 10px;
    border: 2px solid #0073aa;
    border-radius: 4px;
    font-size: 1em;
}

.ets-result-item {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
}

.ets-result-title {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

.ets-result-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.ets-result-excerpt {
    color: #444;
    line-height: 1.6;
}

.ets-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}

.ets-tag {
    background: #e0e0e0;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9em;
    text-decoration: none;
    color: #333;
}

.ets-tag:hover {
    background: #0073aa;
    color: white;
}

@media (max-width: 768px) {
    .ets-event-thread,
    .ets-search-results {
        padding: 10px;
    }
    
    .ets-post-replies {
        margin-left: 15px;
        padding-left: 10px;
    }
    
    .ets-event-meta,
    .ets-post-header {
        flex-wrap: wrap;
    }
}