/* Site Primary Button */

.dpk-button {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    cursor: pointer;
    padding: 0.375rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    border: 1px solid transparent;
    border-radius: 0;
    background-color: #000000;
    color: #ffffff; 
    transition: color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
    text-decoration: none; 
}

.dpk-button:hover {
    background-color: #333333;
    color: #ffffff;
}
