﻿/* Custom styles for the whole site */
body {
    background-color: #fff !important;
    color: #000;
    /*padding-bottom: 50px;*/ /* Adjusted for footer height */
    /*padding-top: 10px;*/ /* Adjusted for header height */
}

/* Custom styles for the fixed header */
.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #d11600;
    color: #fff;
    padding: 10px;
    text-align: left; /* Align text to left */
    z-index: 1000; /* Ensure header is above other content */
}

    .fixed-header a {
        color: #fff; /* Make header links white */
        text-decoration: none;
    }
/* Custom styles for the back arrow */
.back-arrow {
    float: left; /* Align arrow to left */
    margin-right: 10px; /* Add space between arrow and text */
}
/* Custom styles for link cards */
.link-card {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px 20px;
    margin-bottom: 10px;
    color: black;
    background-color: #f5f5f5; /* Light background color for button look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    cursor: pointer; /* Make cursor a pointer to indicate clickability */
}

    .link-card:hover {
        background-color: #e0e0e0; /* Slightly darker background on hover */
        color: #007bff; /* Change text color on hover */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
        transform: translateY(-2px); /* Slight upward movement on hover */
    }

    .link-card:active {
        background-color: #dcdcdc; /* Even darker background when clicked */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15); /* Reduced shadow to simulate press */
        transform: translateY(0px); /* Return to original position on click */
    }

    .link-card .arrow {
        float: right;
        color: #fff; /* Make right arrow white */
    }
/* Custom styles for the footer */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #3a3633;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

    .footer a {
        color: #fff;
        text-decoration: none;
        margin: 0 10px;
        font-size: 20px !important; /* Adjust font size for icons */
    }

    .footer .fa-lg {
        font-size: 24px; /* Custom size for larger icons */
    }

    .footer .fa-smaller {
        font-size: 16px; /* Custom size for smaller icons */
    }
/* Custom styles for the group header */
.group-header {
    font-size: 20px;
    margin-top: 60px; /* Adjusted margin-top */
}

.fa-lg {
    font-size: 20px !important;
}

.setIconWidth {
    width: 60px;
}

.RedHeading {
    color: #e4002b;
    padding-top: 0px;
    font-size: 22px;
}

.RedText {
    color: #e4002b;
    padding-top: 0px;
    font-size: 16px;
}

hr {
    height: 1px;
    background-color: lightgrey;
    border: none;
}

.SoftInput {
    border-color: #dddfe2 !important;
    color: #464b53 !important;
}

.SoftHeader {
    font-weight: 400;
    color: #333;
}

.GreyText {
    color: #333;
}

.SignInMobile {
    display: none;
}

.SignInDesktop {
    display: flex;
}


@media (max-width: 1000px) {
    .SignInMobile {
        display: flex;
    }

    .SignInDesktop {
        display: none;
    }
}
