body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    color: #1c1e21;
}

.dashboard-container {
    max-width: 800px; /* Ajuste conforme necessário */
    margin: 0 auto;
    padding: 20px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 30px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Logo como elemento decorativo na home, sem link */
.header-left img {
    cursor: default;
}

header h1 {
    font-size: 28px; /* Aumentado um pouco */
    font-weight: 600;
    margin: 0;
}

.user-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e4e6eb;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    color: #050505;
}

.prepare-scan-section {
    margin-bottom: 40px;
}

.blue-button {
    width: 100%;
    padding: 15px;
    background-color: #1877f2; /* Azul do Facebook/imagem */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px; /* Aumentado */
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.blue-button:hover {
    background-color: #166fe5;
}

.active-scans-section h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.scans-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.scan-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: box-shadow 0.2s ease-in-out;
}

.scan-item:hover {
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.scan-info h3 {
    font-size: 18px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 5px;
    color: #050505;
}

.scan-info p {
    font-size: 14px;
    color: #606770;
    margin: 0;
}

.scan-status {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.scan-status span {
    padding: 5px 10px;
    border-radius: 15px; /* Mais arredondado */
    background-color: #e7f3ff; /* Azul claro para 'In Progress' */
    color: #004085; /* Azul escuro para texto */
}

.scan-status.completed span {
    background-color: #d4edda; /* Verde claro para 'Completed' */
    color: #155724; /* Verde escuro para texto */
}

.scan-status i {
    color: #606770;
    font-size: 16px;
}

/* Estilos para o header da imagem original (app.mimirtcg.com) */
/* Se você quiser replicar a barra superior com URL, precisaria de mais HTML e CSS */
/* Por ora, o foco é no conteúdo da página */ 