/* Live Match Comments Frontend Styles */
.lmc-container {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 20px 0;
}
.lmc-header {
    background: #2d2d2d;
    padding: 15px 20px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lmc-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff4444;
    font-weight: bold;
    font-size: 14px;
}
.lmc-live-dot {
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: lmc-pulse 2s infinite;
}
@keyframes lmc-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}
.lmc-comments-feed {
    height: 400px;
    overflow-y: auto;
    padding: 15px;
}
.lmc-comments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.lmc-comment {
    background: #2d2d2d;
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid #444;
}
.lmc-comment.lmc-registered-user {
    border-left-color: #4CAF50;
}
.lmc-comment.lmc-guest-user {
    border-left-color: #FF9800;
}
.lmc-comment.lmc-reply {
    border-left-color: #666;
    margin-left: 20px;
    background: #252525;
}
.lmc-comment.lmc-placeholder {
    border-left-color: #666;
    text-align: center;
    color: #888;
}
.lmc-comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}
.lmc-username {
    font-weight: bold;
    color: #4CAF50;
}
.lmc-guest-user .lmc-username {
    color: #FF9800;
}
.lmc-placeholder .lmc-username {
    color: #666;
}
.lmc-time {
    color: #888;
    font-size: 12px;
}
.lmc-comment-text {
    line-height: 1.4;
    margin-bottom: 8px;
}
.lmc-reply-context {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85em;
    font-style: italic;
    color: #aaa;
    text-align: right;
    margin-left: auto;
    max-width: 80%;
}
.lmc-reply-context .lmc-username {
    color: #888;
    font-weight: normal;
    font-size: 0.9em;
}
.lmc-reply-context .lmc-comment-text {
    color: #999;
    font-size: 0.85em;
    margin-bottom: 0;
    line-height: 1.3;
}
.lmc-comment-actions {
    display: flex;
    gap: 10px;
}
.lmc-reply-btn,
.lmc-reaction-btn {
    background: transparent;
    border: 1px solid #444;
    color: #888;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
.lmc-reply-btn:hover,
.lmc-reaction-btn:hover {
    background: #333;
    color: #fff;
}
.lmc-reaction-btn.lmc-reacted {
    background: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
}
.lmc-comment-form {
    padding: 15px;
    border-top: 1px solid #333;
}
.lmc-user-info,
.lmc-guest-info {
    margin-bottom: 10px;
    font-size: 14px;
    color: #888;
}
.lmc-guest-input {
    background: #2d2d2d !important;
    border: 1px solid #444 !important;
    color: #eee !important;
    padding: 8px;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 5px;
}
.lmc-guest-input:required {
    border-color: #ff4444;
}
.lmc-input-area {
    position: relative;
}
#lmc-comment-text {
    background: #2d2d2d;
    border: 1px solid #444;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    width: 100%;
    resize: vertical;
    font-family: inherit;
}
.lmc-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}
.lmc-emojis {
    display: flex;
    gap: 5px;
}
.lmc-emoji-btn {
    background: transparent;
    border: 1px solid #444;
    border-radius: 4px;
    padding: 4px 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.lmc-emoji-btn:hover {
    background: #333;
}
.lmc-submit-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
.lmc-submit-btn:hover {
    background: #45a049;
}
.lmc-submit-btn:disabled {
    background: #666;
    cursor: not-allowed;
}
.lmc-reply-form {
    margin-top: 10px;
    padding: 10px;
    background: #252525;
    border-radius: 4px;
    border-left: 3px solid #666;
}
.lmc-reply-form .lmc-reply-context {
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 10px;
    max-width: 100%;
}
.lmc-reply-form textarea {
    background: #2d2d2d;
    border: 1px solid #444;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    width: 100%;
    resize: vertical;
    font-family: inherit;
    margin-bottom: 8px;
}
.lmc-reply-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}
.lmc-reply-cancel {
    background: transparent;
    border: 1px solid #444;
    color: #888;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}
.lmc-reply-submit {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}