/* BUTTON STYLING */
.download-button {
    background-color: #0d73b2;
    color: white !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    padding: 0.6em 1.2em;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    border: 1px solid #0d73b2;
    align-items: center;
    gap: 8px;
    justify-content: center;
    min-width: 170px;
    white-space: nowrap;
    display: table;      
    margin: 1.5rem auto;  
}

/* HOVER & DEHOVER ANIMATION */
.download-button:hover {
    background-color: white;
    color: #0d73b2 !important;
    border: 1px solid #0d73b2;
    transform: translateY(-3px) translateX(-1px);
    box-shadow: 3px 5px 0 0 #0d73b2;
    transition: all 0.3s ease-in-out;
}

.download-button:not(:hover) {
    transition: all 0.3s ease-in-out;
    transform: translateY(0) translateX(0);
    box-shadow: 0 0 0 0 #0d73b2;
}

/* CLICK (ACTIVE) EFFECT */
.download-button:active {
    transform: translateY(1px) translateX(0.5px);
    box-shadow: 0 0 0 0 #0d73b2;
}


/* CARDS BUTTONS */
.card-button {
    display: block;        
    width: fit-content;       
    margin: 0.7rem auto;      
    background-color: #0d73b2;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    padding: 0.6em 1.2em;
    cursor: pointer;
    transition: all .5s ease-in-out;
    border: 1px solid #0d73b2;
    gap: 8px;
    white-space: nowrap;
}




/* HOVER & DEHOVER ANIMATION */
.card-button:hover {
    background-color: white;
    color: #0d73b2 !important;
    border: 1px solid #0d73b2;
    transform: translateY(-3px) translateX(-1px);
    box-shadow: 3px 5px 0 0 #0d73b2;
    transition: all 0.3s ease-in-out;
}

.card-button:not(:hover) {
    transition: all 0.3s ease-in-out;
    transform: translateY(0) translateX(0);
    box-shadow: 0 0 0 0 #0d73b2;
}

/* CLICK (ACTIVE) EFFECT */
.card-button:active {
    transform: translateY(1px) translateX(0.5px);
    box-shadow: 0 0 0 0 #0d73b2;
}
