html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* Base button style for <a> elements */
a.abtn {
    display: inline-block; /* Makes it behave like a button */
    padding: 8px 10px; /* Space inside the button */
    font-size: 16px; /* Text size */
    font-family: Arial, sans-serif; /* Clean font */
    text-decoration: none; /* Remove underline */
    color: #fff; /* Text color */
    background-color: #00dffff5; /* Button background */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease, transform 0.1s ease;
}

    /* Hover effect */
    a.abtn:hover {
        background-color: #00dffff5; /* Darker blue on hover */
    }

    /* Active (pressed) effect */
    a.abtn:active {
        transform: scale(0.97); /* Slight shrink on click */
    }

    /* Optional: focus outline for accessibility */
    a.abtn:focus {
        outline: 2px solid #004085;
        outline-offset: 2px;
    }

/* Style the link as a button */
.back-home {
    display: inline-block;
    padding: 8px 10px;
    width: 10% !important;
    background-color: #8aa3bd; /* Primary blue */
    color: white;
    text-decoration: none; /* Remove underline */
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    /* Hover effect */
    .back-home:hover {
        transform: scale(1.0);
    }

    /* Active (click) effect */
    .back-home:active {
        transform: scale(0.97);
    }

    .back-home:focus {
        outline: 2px solid #8aa3bd;
        outline-offset: 2px;
    }
