/* Estilos para o Dashboard de Revisão */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
    color: #333;
}
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
header {
    background-color: #4CAF50;
    color: white;
    padding: 20px 0;
    text-align: center;
    border-radius: 8px 8px 0 0;
    margin-bottom: 20px;
}
header h1 {
    margin: 0;
    font-size: 2.5em;
}
header p {
    margin: 5px 0 0;
    font-size: 1.1em;
    opacity: 0.9;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
.stat-card {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
}
.stat-card:hover {
    transform: translateY(-5px);
}
.stat-card h3 {
    margin-top: 0;
    color: #2e7d32;
    font-size: 1.2em;
}
.stat-card p {
    font-size: 2.2em;
    font-weight: bold;
    color: #388e3c;
    margin: 10px 0 0;
}
.review-section h2 {
    color: #4CAF50;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 10px;
    margin-bottom: 20px;
}
.review-list {
    display: grid;
    gap: 20px;
}
.review-card {
    background-color: #f9fbe7;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #cddc39;
}
.review-card.approved { border-left-color: #4CAF50; background-color: #e8f5e9; }
.review-card.rejected { border-left-color: #f44336; background-color: #ffebee; }
.review-card.completed { border-left-color: #2196f3; background-color: #e3f2fd; }

.review-card h3 {
    margin-top: 0;
    color: #555;
    font-size: 1.3em;
}
.review-card p {
    margin: 5px 0;
    line-height: 1.6;
}
.review-card .meta {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 10px;
}
.review-card .actions button {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-right: 10px;
    transition: background-color 0.2s ease;
}
.review-card .actions .approve-btn {
    background-color: #4CAF50;
    color: white;
}
.review-card .actions .approve-btn:hover { background-color: #388e3c; }
.review-card .actions .reject-btn {
    background-color: #f44336;
    color: white;
}
.review-card .actions .reject-btn:hover { background-color: #d32f2f; }
.review-card .actions .edit-btn {
    background-color: #ffc107;
    color: #333;
}
.review-card .actions .edit-btn:hover { background-color: #ffb300; }
.review-card .actions .youtube-input {
    width: calc(100% - 20px);
    padding: 8px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.review-card textarea {
    width: calc(100% - 20px);
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-height: 100px;
    resize: vertical;
}
.no-reviews {
    text-align: center;
    color: #777;
    padding: 50px;
    font-size: 1.2em;
}
.loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #4CAF50;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
    display: none;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.refresh-button-container {
    text-align: center;
    margin-bottom: 20px;
}
.refresh-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.2s ease;
}
.refresh-button:hover {
    background-color: #0056b3;
}
