﻿body {
    font-family: var(--now-font-family,"Source Sans Pro",Arial,sans-serif);
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.header-text {
    font-size: 1.2em;
    margin-left: 120px; /* Adding some space between the logo and header text */
    margin-bottom: 130px;
}
.info-box {
    position: absolute;
    top: 140px;
    left: 20px;
    background: #fff;   
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 250px;
}
header {
    background-color: #0C203D;
    max-width: 650px;
    margin: 50px auto;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Aligning logo and header text */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    overflow: hidden;
}

.container {
    width: 80%;
    max-width: 620px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow: hidden;
}

.startbutton {
    border: 2px solid #ccc;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 8px;
    overflow: hidden;
    background-color: #0C203D;
    color: #FFFFFF;
}

.logo {
    max-width: 165px;
    height: auto;
}

.contact-list {
    list-style-type: none;
    padding: 0;
}

.contact-item {
    margin-bottom: 10px;
}

.label {
    font-weight: bold;
}

.headertextSD {
    font-weight: bold;
    font-size: 14pt;
    color: #F3704C;
    font-style: normal;
}

.textbox {
    height: 25px;
    border-radius: 5px;
    font-size: 14pt;
}

.phone-number {
    margin-left: 10px;
    font-size: 1.1em;
}

a:link, a:visited {
    color: #0C203D;
    padding: 5px 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

a:hover, a:active {
    color: #F3704D;
}
a.button:hover {
    color: #F3704D;
}
a.button {
    padding: 9px 9px;    
    border: 1px outset buttonborder;
    border-radius: 3px;
    color: #ffff;
    background-color: #0C203D;
    text-decoration: none;
}

/* ❓ Help icon aligned left of hint */
.help-icon {
    background: #0C203D;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    font-size: 18px;
    line-height: 32px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    flex-shrink: 0;
}
/* Floating hint + help icon wrapper */
.chat-hint-wrapper {
    position: fixed;
    bottom: 40px;
    right: 110px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 999;
}
/* 💡 Floating hint box */
.chat-hint {
    background: #ffffff;
    border-left: 6px solid #0C203D;
    border-radius: 8px;
    padding: 10px 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: flashHint 1.2s ease-in-out infinite alternate;
}
    /* 🌈 Text flashing effect */
    .chat-hint span {
        font-size: 14px;
        font-weight: 700;
        color: #0b1e3f;
        animation: textFlash 1.5s ease-in-out infinite alternate;
    }

@keyframes flashHint {
    0% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 8px rgba(58,111,247,0.5);
    }

    100% {
        opacity: 0.7;
        transform: scale(1.05);
        box-shadow: 0 0 14px rgba(58,111,247,0.9);
    }
}

@keyframes textFlash {
    0% {
        color: #fff;
    }

    50% {
        color: #2C4B7A;
    }

    100% {
        color: #0C203D;
    }
}


/* 🧩 Troubleshooting box */
.troubleshoot-box {
    position: fixed;
    bottom: 110px;
    right: 200px;
    width: 320px;
    background: #ffff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    padding: 15px;
    display: none;
    z-index: 1002;
}

    .troubleshoot-box h4 {
        margin: 0 0 8px 0;
        font-size: 16px;
        color: #0b1e3f;
    }

    .troubleshoot-box ul {
        margin: 0;
        padding-left: 20px;
    }

    .troubleshoot-box li {
        font-size: 14px;
        line-height: 1.5;
    }

@media screen and (max-width: 992px) {
    .info-box {
        position: relative;
        left: 0;
        width: 90%;
        margin: 20px auto;
    }

    .chat-container {
        width: 90%;
    }

    .chat-hint-wrapper {
        right: 50px;
        bottom: 30px;
        flex-direction: column-reverse;
        align-items: flex-end;
    }
}

