

.red-border {
    border-style: solid;
    border-color: red;
}

.green-border {
    border-style: solid;
    border-color: green;
}

.blue-border {
    border-style: solid;
    border-color: blue;
}

.ahx-heading {
    color: #7c795d;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 24px;
    /* border: 1px solid green; */
}

.page-title {
    color: #7c795d;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
    margin: 0 0 24px;
}

.page-title-mobile {
    color: #7c795d;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    margin: 0 0 24px;
}

/* flask flashed msgs */
.message {
    color: green;
}

.error {
    color: red;
}

/*
.linkbtn {
    background-color: transparent;
    text-decoration: underline;
    border: 0;
    color: #293b81;
    margin: auto;
}

.linkbtn:hover {
    color: #3280ec;
}
*/
/*
a:link {
    color:green;
    text-decoration: underline;
}
    */
a, a:visited {
    color: blue;
    text-decoration: none;
}

/*
a:visited {
    color: #293b81;
}*/

a:hover {
    text-decoration: underline;
}

/*
a:active {
    color: #3280ec;
}
*/
.center {
    margin-left: auto;
    margin-right: auto;
}


.toc {
    display: flex;
    gap: 2rem;
    max-width: 700px;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-family: sans-serif;
    font-size: 1.2rem;
    background-color: #f7f7f7;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;

}

.toc-column {
    flex: 1;
}

.toc-column ol {
    list-style-position: inside;
    padding: 0;
}

.toc-column ul {
    list-style-type: none;
    padding: 0;
}

.toc-column li {
    margin: 0.3rem 0;
}

.toc-column a {
    text-decoration: none;
    color: #0066cc;
}

.toc-column a:hover {
    text-decoration: underline;
}

/* Base button style */
.ahx-submit-button {
    -webkit-appearance: none;
    appearance: none;
    background-color: #0077B6;
    /* Ocean blue */
    /* background-color: #ff0000;   */
    border: none;
    color: #ffffff;
    /* White text */
    text-align: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.6rem 1.4rem;
    margin: 1.0rem 1.0rem;
    text-decoration: none;
    /* display: inline-block; */
    display: inline-flex;
    /* Use inline-flex to make the button size adapt to its content */
    align-items: center;
    /* Center the content vertically */
    justify-content: center;
    /* Center the content horizontally */
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Hover effect */
.ahx-submit-button:hover {
    background-color: #005e99;
    /* Darker ocean blue */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    /* transform: translateY(-2px); */
}

.ahx-submit-button:disabled {
    background-color: #aaaaaa;
}

/* Active effect */
.ahx-submit-button:active {
    transform: translateY(1px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Media query for mobile devices */
@media screen and (max-width: 480px) {
    .ahx-submit-button {
        font-size: 1rem;
        /* background-color: #ff0000; */
    }
}
