@charset "UTF-8";
/* CSS Document */
/* Tom Hunter Photography © */


.custom-lightbox-btn {
    margin-top: 0px; 
    width: 310px; 
    text-transform: uppercase; 
    font-size: 30px; 
    text-decoration: none; 
    cursor: pointer; 
    display: inline-block; 
    padding: 20px; 
    font-family: inherit; 
    text-shadow: none; 
    user-select: none; 
    transition: all 0.1s ease-in; 
    background-color: #026b96; 
    border: 0px solid #FFA500; 
    color: #FFFFFF; 
    border-radius: 10px;
    text-align: center; /* Keeps text centered inside the width */
  }

/* Define the hover effect here */
  .custom-lightbox-btn:hover {
    background-color: #9b968c; /* Darkens the blue color on hover */
    border-color: #fff;     /* Shows the orange border on hover */
    color: #fff !important;
  }

