.fa-4x { 
    margin-top: 15px;
}

.service-selected {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Hide the checkbox but still make it accessible */
input[type="checkbox"] {
    opacity: 0.7;
    transform: scale(1.5);
}

@keyframes rotatingGlow {
    0% {
        box-shadow: 
            rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
    }
    25% {
        box-shadow: 
            -5px -5px 15px 2px lightskyblue,
            rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
            rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    }
    50% {
        box-shadow: 
            0 5px 15px 2px lightskyblue, 
            rgba(17, 17, 26, 0.1) 0px 4px 16px,
            rgba(17, 17, 26, 0.05) 0px 8px 32px;
    }
    75% {
        box-shadow: 
            -5px 0 15px 2px lightskyblue, 
            rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
    }
    100% {
        box-shadow: 
            rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
    }
}

#chat-box {
    width: 100%;
    max-width: 800px;
    height: 400px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #f5f5f5;
}

#chat-box .user {
    display: block;
    max-width: 80%;
    clear: both;
    margin: 10px 10px 10px 0;
    padding: 8px 10px;
    border-radius: 18px;
    background-color: #fff;
    position: relative;
}

#chat-box .assistant {
    display: block;
    max-width: 80%;
    clear: both;
    margin: 10px 0 10px 10px;
    padding: 8px 10px;
    border-radius: 18px;
    background-color: #007BFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
    color: #fff;
    position: relative;
}

#myInput {
    width: 75%;
    font-size: 28px;
}

#myInput:read-only {
    box-shadow: 0px 20px 30px -10px lightskyblue; 
    outline: none; 
    background-color: white;
    cursor: not-allowed;
}

#user-input {
    width: 80%;
    padding: 10px;
    margin-right: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

#send-button {
    padding: 10px 15px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#send-button:hover {
    background-color: #0056b3;
}

#services-div {
    border: 1px solid;
    border-style: ridge;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

::-webkit-scrollbar-thumb {
    background: #888; 
}

::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

#services-table {
    cursor: pointer;
}
