.elementor-1424 .elementor-element.elementor-element-d58e342 > .elementor-widget-container{margin:40px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-ceaefcc *//* Variáveis personalizadas do GRD Check */
.grd-check-container {
    --grd-primary: #DB7E2F;
    --grd-primary-dark: #3a5d97;
    --grd-secondary: #6c757d;
    --grd-success: #28a745;
    --grd-danger: #dc3545;
    --grd-warning: #ffc107;
    --grd-light: #f8f9fa;
    --grd-dark: #343a40;
}

/* Estilos principais */
.grd-check-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

.grd-check-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    box-sizing: border-box;
}

.grd-check-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.grd-check-title {
    color: var(--grd-primary);
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: bold;
}

.grd-check-subtitle {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    color: var(--grd-secondary);
}

.grd-check-form-group {
    margin-bottom: 20px;
}

.grd-check-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--grd-dark);
}

.grd-check-input, 
.grd-check-select, 
.grd-check-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background-color: white;
    box-sizing: border-box;
}

.grd-check-textarea {
    height: 200px;
    resize: vertical;
}

.grd-check-button {
    background-color: var(--grd-primary);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    display: block;
    width: 100%;
    text-align: center;
    display: flex;          /* Adicionado */
    align-items: center;    /* Adicionado */
    justify-content: center; /* Adicionado */
    line-height: 1;         /* Adicionado */
    min-height: 48px;       /* Adicionado */
}

.grd-check-button:hover {
    background-color: var(--grd-primary-dark);
}

.grd-check-results {
    margin-top: 30px;
    display: none;
}

.grd-check-result-box {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
    white-space: pre-wrap;
    word-break: break-word;
}

.grd-check-status {
    font-weight: bold;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.grd-check-status-success {
    background-color: rgba(40, 167, 69, 0.2);
    color: #155724;
}

.grd-check-status-error {
    background-color: rgba(220, 53, 69, 0.2);
    color: #721c24;
}

.grd-check-stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.grd-check-stats-card {
    flex: 1;
    min-width: 150px;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.grd-check-stats-card h3 {
    font-size: 14px;
    color: var(--grd-secondary);
    margin-bottom: 10px;
}

.grd-check-stats-card p {
    font-size: 24px;
    font-weight: bold;
    color: var(--grd-primary);
}

.grd-check-invalid-lines {
    margin-top: 20px;
    padding: 10px;
    background-color: rgba(255, 193, 7, 0.2);
    border-radius: 5px;
    color: #856404;
}

.grd-check-detailed-results {
    margin-top: 30px;
}

.grd-check-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.grd-check-table th, 
.grd-check-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.grd-check-table th {
    background-color: var(--grd-light);
    font-weight: bold;
}

.grd-check-resultado-win {
    color: var(--grd-success);
    font-weight: bold;
}

.grd-check-resultado-wingale {
    color: #fd7e14;
    font-weight: bold;
}

.grd-check-resultado-loss {
    color: var(--grd-danger);
    font-weight: bold;
}

.grd-check-resultado-pendente {
    color: var(--grd-warning);
    font-weight: bold;
}

.grd-check-resultado-erro {
    color: var(--grd-secondary);
    font-style: italic;
}

.grd-check-loading {
    display: none;
    text-align: center;
    margin: 20px 0;
}

.grd-check-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: var(--grd-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: grd-check-spin 1s linear infinite;
    margin: 0 auto 15px;
}

.grd-check-log-container {
    margin-top: 20px;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: monospace;
    font-size: 12px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

@keyframes grd-check-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsividade */
@media (max-width: 768px) {
    .grd-check-stats-container {
        flex-direction: column;
    }
    
    .grd-check-wrapper {
        padding: 15px;
    }
    
    .grd-check-table {
        display: block;
        overflow-x: auto;
    }
}/* End custom CSS */