/* Styles for Moderation Queue */

.moderacao-container {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.title-gold {
    color: #c69b48;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.gold-icon {
    color: #c69b48 !important;
    margin-right: 10px;
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.refresh-btn {
    background-color: #c69b48 !important;
    color: #000 !important;
    font-weight: bold !important;
}

.spinner-container {
    padding: 80px 0;
}

/* Empty State Card */
.empty-state-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(198, 155, 72, 0.3);
    border-radius: 12px;
    padding: 60px 20px;
    margin-top: 30px;
    text-align: center;
    color: #b3b3b3;
}

.large-empty-icon {
    font-size: 72px;
    width: 72px;
    height: 72px;
    color: #c69b48 !important;
    margin-bottom: 20px;
}

.empty-state-card h3 {
    color: #fff;
    font-size: 20px;
    margin: 0 0 10px 0;
}

/* Glassmorphic Submission Card */
.submission-card {
    background: rgba(30, 30, 30, 0.85) !important;
    border: 1px solid rgba(198, 155, 72, 0.2);
    border-radius: 12px !important;
    margin-bottom: 25px !important;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important;
    transition: all 0.3s ease;
}

.submission-card:hover {
    border-color: rgba(198, 155, 72, 0.6);
    box-shadow: 0 8px 32px 0 rgba(198, 155, 72, 0.15) !important;
    transform: translateY(-2px);
}

/* Video Preview Section */
.video-preview-wrapper {
    position: relative;
    background: #000;
    overflow: hidden;
    min-height: 200px;
}

.video-link-preview {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-link-preview:hover .video-thumbnail {
    transform: scale(1.05);
    filter: brightness(0.6);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    z-index: 2;
}

.video-link-preview:hover .play-overlay {
    opacity: 1;
}

.play-icon {
    font-size: 48px !important;
    width: 48px;
    height: 48px;
    color: #c69b48 !important;
    margin-right: 8px;
}

/* Details Section */
.submission-details {
    padding: 20px;
    box-sizing: border-box;
}

.details-header {
    margin-bottom: 15px;
}

.badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.channel-badge {
    background: rgba(198, 155, 72, 0.15);
    border: 1px solid rgba(198, 155, 72, 0.3);
    color: #eec1c8;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.badge-icon {
    font-size: 16px !important;
    width: 16px;
    height: 16px;
    color: #c69b48 !important;
    margin-right: 5px;
}

.date-badge {
    color: #808080;
    font-size: 12px;
    align-self: center;
    margin-left: 5px;
}

.category-badge {
    background: rgba(255, 255, 255, 0.08);
    color: #ccc;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
}

/* Match Score Visualization */
.match-score-row {
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    margin: 15px 0;
}

.athlete-column {
    text-align: center;
}

.athlete-name {
    font-size: 18px;
    font-weight: 500;
    color: #b3b3b3;
    display: block;
    margin-bottom: 8px;
}

.athlete-name.winner {
    color: #c69b48;
    font-weight: bold;
}

.athlete-score {
    font-size: 32px;
    font-weight: 800;
    color: #808080;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 20px;
    border-radius: 30px;
    display: inline-block;
}

.athlete-score.winner-score {
    color: #000;
    background: #c69b48;
}

.vs-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #808080;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 10px;
    border-radius: 50%;
}

/* Actions Row */
.card-actions-row {
    margin-top: 15px;
    gap: 15px;
}

.reject-btn {
    background-color: rgba(244, 67, 54, 0.1) !important;
    border: 1px solid rgba(244, 67, 54, 0.3) !important;
    color: #f44336 !important;
    font-weight: bold !important;
}

.reject-btn:hover {
    background-color: #f44336 !important;
    color: #fff !important;
}

.approve-btn {
    background-color: #c69b48 !important;
    color: #000 !important;
    font-weight: bold !important;
}

.approve-btn:hover {
    background-color: #e5b95a !important;
}

/* Mobile Responsiveness overrides */
@media (max-width: 599px) {
    .submission-card {
        flex-direction: column;
    }
    .video-preview-wrapper {
        min-height: 180px;
    }
    .card-actions-row {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    .card-actions-row button {
        margin: 5px 0 !important;
        width: 100%;
    }
}

/* High contrast overrides for dark cards */
.submission-card md-input-container {
    margin-bottom: 5px !important;
}

.submission-card md-input-container label,
.submission-card md-input-container .md-placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.submission-card md-input-container.md-input-focused label {
    color: #c69b48 !important;
}

.submission-card md-input-container input {
    color: #fff !important;
    border-bottom-color: rgba(255, 255, 255, 0.3) !important;
}

.submission-card md-input-container input:focus {
    border-bottom-color: #c69b48 !important;
}

.submission-card md-select {
    color: #fff !important;
}

.submission-card md-select .md-select-value {
    color: #fff !important;
    border-bottom-color: rgba(255, 255, 255, 0.3) !important;
}

.submission-card md-select .md-select-value.md-select-placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.submission-card md-switch {
    color: #fff !important;
    margin: 0 !important;
}

.submission-card md-switch .md-label {
    color: #fff !important;
    font-size: 13px;
    font-weight: 500;
    margin-left: 36px !important;
}

.title-counter {
    font-size: 16px;
    color: #808080;
    font-weight: normal;
    margin-left: 12px;
}
