/* Global styles for DocuProx website */

/* CTA Button styling */
.cta-button {
    background-color: #3B82F6;
    color: white;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
    padding: 0.5rem 1.25rem;
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

.cta-button:hover {
    background-color: #2563EB; /* A slightly darker blue */
}

/* Ensure button works in all contexts */
a.cta-button, button.cta-button {
    background-color: #3B82F6;
    color: white !important;
}

a.cta-button:hover, button.cta-button:hover {
    background-color: #2563EB;
    color: white !important;
}
