/* /Components/GenerateSectionChatBot/AiChatBox/AiChatBox.razor.rz.scp.css */
    .ai-chatbox[b-gfj5b4ctin] {
        position: fixed;
        bottom: 20px;
        font-size: 18px;
        height: 95dvh;
        right: 20px;
        width: 90vw;
        background-color: white;
        border: 1px solid #ccc;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        font-family: sans-serif;
        z-index: 1000;
    }

    th[b-gfj5b4ctin] {
        color: black !important;
        font-weight: bold;
        font-size: 18px;
        position: relative;
    }

    .chat-header[b-gfj5b4ctin] {
        color: white;
        padding: 10px;
        font-weight: bold;
        text-align: center;
    }

    .chat-body[b-gfj5b4ctin] {
        padding: 10px;
        height: 100%;
        gap: 20px;
        overflow-y: auto;
    }

    .chat-body .bot[b-gfj5b4ctin] {
        text-align: left;
        justify-content: left;
    }

    .chat-body .user[b-gfj5b4ctin] {
        text-align: right;
        justify-content: right;
    }

    .chat-input[b-gfj5b4ctin] {
        display: flex;
        flex-direction: column;
        padding: 10px;
        border-top: 1px solid #ccc;
    }

    .chat-input input[b-gfj5b4ctin] {
        flex: 1;
        padding: 5px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .chat-input button[b-gfj5b4ctin] {
        margin-left: 5px;
        padding: 5px 10px;
        color: white;
        border: none;
        border-radius: 4px;
    }

    

    .chat-input .mic-button[b-gfj5b4ctin], .exit-button[b-gfj5b4ctin] {
        background: none;
        border: none;
        font-size: 20px;
        color: #444;
        cursor: pointer;
        padding: 6px;
    }

    .chat-input .mic-button:hover[b-gfj5b4ctin] {
        color: #0078d7;
    }

.message-wrapper[b-gfj5b4ctin] {
    display: flex;
    padding: 0 10px;

}

.message-wrapper.user[b-gfj5b4ctin] {
    align-self: flex-end;
}

.message-wrapper.bot[b-gfj5b4ctin] {
    align-self: flex-start;
}

.user .bubble[b-gfj5b4ctin] {
    background-color: #0078D7;
    color: white;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 16px;
}

.bot .bubble[b-gfj5b4ctin] {
    background-color: #f1f0f0;
    color: black;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 16px;
}

.bubble[b-gfj5b4ctin] {
    padding: 10px 14px;
    max-width: 100%;
    border-radius: 16px;
    font-size: 18px;
    line-height: 1.4;
    white-space: pre-wrap;
}

@media (max-width: 1200px) {
    .ai-chatbox[b-gfj5b4ctin] {
        width: 95%;
        right: 2.5%;
    }

    textarea[b-gfj5b4ctin] {
        width: 100%;
        margin-top: 0.5rem;
        align-self: center;
    }

    .chat-body[b-gfj5b4ctin] {
        height: 100%;
    }

}
/* /Components/GenerateSectionChatBot/EditSectionWidget/EditSectionWidget.razor.rz.scp.css */

.card[b-x8dpk2xbgo] {
  transition: transform 200ms ease, box-shadow 200ms ease;
  cursor: pointer;
}

.card:hover[b-x8dpk2xbgo] {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
/* /Components/GenerateSectionChatBot/ManualAddSectionWidget/ManualAddSectionWidget.razor.rz.scp.css */

/* /Components/GenerateSectionChatBot/SelectSectionPartsWidget/SelectSectionPartsWidget.razor.rz.scp.css */
.card-button[b-jayuauzp0e] {
  transition: transform 200ms ease, box-shadow 200ms ease;
  cursor: pointer;
}

.card-button:hover[b-jayuauzp0e] {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
/* /Components/MileageOcrInput/MileageOcrInput.razor.rz.scp.css */
.camera-container[b-lynmwjjski] {
    position: fixed;
    z-index: 1000000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh; /* dynamic viewport height for mobile browsers */
    background: black;
    padding: 0px;
}

video[b-lynmwjjski] {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mileage-text[b-lynmwjjski] {
    position: absolute;
    top: -45px; /* distance from top */
    width: 100%;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: red;
    text-shadow: 1px 1px 2px black; /* makes it visible over video */
    pointer-events: none;
}

.overlay[b-lynmwjjski] {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 100px;
    transform: translate(-50%, -50%);
    border: 3px solid white;
    box-sizing: border-box;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}


.scanner-bar[b-lynmwjjski] {
  position: absolute;
  top: 0;
  width: 4px;
  height: 100%;
  background: rgba(0, 255, 0, 0.7);
  animation: scanLeftRight-b-lynmwjjski 1.5s linear infinite;
  box-shadow: 0 0 10px 2px rgba(0, 255, 0, 0.7);
}

@keyframes scanLeftRight-b-lynmwjjski {
  0% { left: 0%; }
  50% { left: calc(100% - 4px); }
  100% { left: 0%; }
}

.capture-div[b-lynmwjjski] {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.capture-btn[b-lynmwjjski] {
  background: #0078d7;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.approve-btn[b-lynmwjjski] {
  background: lightgreen;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.close-icon[b-lynmwjjski] {
    position: absolute;
    top: 8px;
    right: 28px;
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
}
.close-icon:hover[b-lynmwjjski] {
    background: rgba(0,0,0,0.6);
}

.cameraCanvas[b-lynmwjjski] {
  height: 100%;
  width: auto;
}
/* /Components/MobileFriendly/MobileFriendlyButtonLink/MobileFriendlyButtonLink.razor.rz.scp.css */
.tooltip[b-dpapakig47] {
    top: -35px;
}

a[b-dpapakig47] {
    position: relative; 
    display: flex; 
    flex-direction: column;
    padding:0.5rem; 
    align-items: center;
}

.bs-tooltip-top[b-dpapakig47] {

    .tooltip-arrow {
        bottom: -2px;
        left: 45%;
    }

    .tooltip-inner[b-dpapakig47] {
        white-space: nowrap;
    }
}
/* /Components/MobileFriendly/MobileFriendlyButton/MobileFriendlyButton.razor.rz.scp.css */
.tooltip[b-f2f6s0m1mz] {
    top: -35px;
}

button[b-f2f6s0m1mz] {
    position: relative; 
    display: flex; 
    flex-direction: column;
    padding:0.5rem; 
    align-items: center;
}

.bs-tooltip-top[b-f2f6s0m1mz] {

    .tooltip-arrow {
        bottom: -2px;
        left: 45%;
    }

    .tooltip-inner[b-f2f6s0m1mz] {
        white-space: nowrap;
    }
}
/* /Pages/Schedule/Reports/VehicleHistory.razor.rz.scp.css */
[b-xptz4juzoz] .accordion-button {
    padding: 0.25rem !important;
}
