body {
    background-image: url('./new-img/Group\ 47547.png');
    color: #e0e0e0;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

.d-none{
    display: none !important;
}

.card {
    border: none;
    border-radius: 20px;
    background: #1a1a1a94;
    transition: all 0.5s ease;
}

.form-label {
    color: #fff;
}

.form-control::placeholder {
    color: #a5a4a4;
}

.form-control {
    background: #2d2d2d;
    border: 1px solid #444;
    color: #b6b6b6;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

.form-control {
    background: #252525;
    border: 1px solid #333;
    color: #c7c7c7;
}

.form-control:focus {
    background: #2d2d2d;
    color: #fff;
    border-color: #0d6efd;
    box-shadow: none;
}

/* Chat Styling */

.msg-actions {
    display: flex;
    gap: 8px;
}

.msg-actions button {
    font-size: 12px;
    padding: 2px 8px;
    opacity: 0.7;
    transition: 0.2s;
}

.msg-actions button:hover {
    opacity: 1;
    transform: scale(1.1);
}

#chat-container {
    height: 200px;
    overflow-y: auto;
    padding: 20px;
    background: #121212;
    border-radius: 15px;
    border: 1px solid #333;
}

.msg {
    margin-bottom: 15px;
    padding: 12px 18px;
    border-radius: 15px;
    max-width: 85%;
    line-height: 1.5;
}

.user-msg {
    background: #0d6efd;
    color: white;
    align-self: flex-end;
    margin-left: auto;
    border-bottom-right-radius: 2px;
}

.ai-msg {
    background: #252525;
    color: #e0e0e0;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    border-left: 3px solid #0dcaf0;
}

.mic-active {
    color: #ff4757 !important;
    animation: pulse 1.5s infinite;
}

/* Avatar Styling */
.avatar-wrapper {
    width: 100%;
    max-width: 350px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #0dcaf0;
    box-shadow: 0 0 25px rgba(13, 202, 240, 0.3);
}

#avatar-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Chat Layout */
/* #chat-step {
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    padding: 20px;
    z-index: 999;
} */

#chat-step {
    width: 100%;
    padding: 20px 0;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

body {
    padding-top: 90px;
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.hidden {
    display: none !important;
}

@media only screen and (max-width: 700px){
    .main-content {
            margin-bottom: 150px;
    } 
}

@media only screen and (max-width: 700px) {
  #navbar .user-items {
    display: none;
  }
  #chat-step{
    height: 120vh;
  }
  #chat-container{
    height: 300px;
  }
}

@media only screen and (max-width: 375px) {
    #chat-step{
    height: 150vh;
  }
}