/* Botão de Verificação */
.digicompraconfirmada-botao {
    background-color: #28a745; /* Verde */
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.digicompraconfirmada-botao:hover {
    background-color: #218838; /* Verde mais escuro */
}

/* Modal Overlay */
.digicompraconfirmada-modal-overlay {
    display: none; /* Escondido por padrão */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* Modal Content */
.digicompraconfirmada-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.digicompraconfirmada-modal-content h3 {
    margin-top: 0;
}

.digicompraconfirmada-modal-content .spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.digicompraconfirmada-modal-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.digicompraconfirmada-modal-button {
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    cursor: pointer;
    font-weight: bold;
}

.digicompraconfirmada-modal-button.primary {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

/* ##### NOVO ESTILO PARA O BOTÃO DE AJUDA ##### */
.digicompraconfirmada-modal-button.secondary {
    background-color: transparent;
    border: 1px solid #6c757d;
    color: #6c757d;
    padding: 6px 12px; /* Menor padding */
    font-size: 14px;   /* Fonte menor */
    font-weight: normal;
}

.digicompraconfirmada-modal-button.secondary:hover {
    background-color: #6c757d;
    color: #fff;
}