/* Remark42 Custom Styling for BlooketBot */

/* Main theme colors matching BlooketBot */
.remark42__frame {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

/* Comment cards */
.remark__comment {
    background: rgba(43, 182, 218, 0.05) !important;
    border: 1px solid rgba(43, 182, 218, 0.2);
    border-radius: 8px;
    margin-bottom: 16px;
}

/* Input areas */
.remark-form__subscribe,
.remark-form textarea {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(43, 182, 218, 0.3);
    border-radius: 6px;
    color: #fff;
    padding: 12px;
}

.remark-form textarea:focus {
    border-color: #2bb6da;
    outline: none;
    box-shadow: 0 0 0 2px rgba(43, 182, 218, 0.2);
}

/* Buttons */
.remark-form__button {
    background: linear-gradient(135deg, #2bb6da 0%, #1a8fb8 100%);
    border: none;
    border-radius: 6px;
    color: #fff;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.remark-form__button:hover {
    background: linear-gradient(135deg, #1a8fb8 0%, #2bb6da 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 182, 218, 0.3);
}

/* Text colors */
.remark__comment-text p,
.remark__comment-text {
    color: #ddd;
}

.remark__username {
    color: #2bb6da;
    font-weight: 600;
}

.remark__time {
    color: #999;
}

/* Links */
.remark__comment a {
    color: #2bb6da;
}

.remark__comment a:hover {
    color: #1a8fb8;
}

/* Vote buttons */
.remark__vote {
    color: #999;
    transition: color 0.2s ease;
}

.remark__vote:hover {
    color: #2bb6da;
}

/* Admin/Moderator badges */
.remark__badge {
    background: rgba(43, 182, 218, 0.2);
    color: #2bb6da;
    border-radius: 4px;
    padding: 2px 6px;
    font-size: 0.8em;
}