/* buttons.css */
.btn-no-effect {
    background-color: #00509E;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-no-effect:hover {
    background-color: #00CFFF;
}

.btn-with-effect {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    background-color: #00509E;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
}

.btn-with-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #00CFFF; /* Hover color */
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-with-effect:hover::before {
    left: 0;
}

.btn-with-effect:hover {
    color: white;
}
