#dcp-locked-content {
    width: 100%;
    display: block;
    text-align: center;
    margin: 20px 0;
}

#dcp-locked-content button {
    display: inline-block;
}

.dcp-button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.dcp-twitter {
    background-color: #1DA1F2;
}

.dcp-facebook {
    background-color: #1877F2;
}

#dcp-processing-message {
    margin-top: 15px;
    font-weight: bold;
    color: #ff6600; /* Naranja llamativo */
    font-size: 18px;
    text-align: center;
}

/* Opcional: animación de parpadeo suave */
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

#dcp-processing-message {
    animation: blink 1.5s infinite;
}

#dcp-progress-container {
    width: 80%;
    max-width: 400px;
    background-color: #f1f1f1;
    border-radius: 5px;
    overflow: hidden;
    margin: 20px auto;
    height: 20px;
    min-height: 20px;
}

/* Mejoras para pantallas pequeñas */
@media screen and (max-width: 600px) {
    #dcp-progress-container {
        width: 90%;
    }
}

#dcp-progress-bar {
    height: 100%;
    width: 0%;
    background-color: #4CAF50;
}
