/* Style for the chat widget icon  */

.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #007bff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.chat-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background-color: #0056b3;
    color: #f8f9fa; /* Lighter text color for better contrast on hover */
}

.chat-widget:active {
    transform: scale(0.95);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}


/* Pop Up Notice Board 

#startImg {
  max-width: auto;
}


.modal-content {
  background: transparent; 
  border: none; 
  box-shadow: none; 
  display: flex;
    justify-content: center; 
    align-items: center; 
}
 */
 
 




