/* Default style for fabButton */
#pickaxe-fabButton {
    background-color: white !important;
    display: flex !important;
    justify-content: center !important; /* centers children horizontally */
    align-items: center !important;
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.12) !important;
    transition: background-color 0.3s ease !important;
    transition: box-shadow 0.3s ease !important; /* Smooth transition */
}

/* Style for fabButton when chatbot is active */
#pickaxe-fabButton.active {
    background-color: rgb(255, 255, 255) !important;
    box-shadow: none !important;
}

#pickaxe-chatbotContainer {
    position: fixed !important;
    bottom: 90px !important;
    right: 20px !important;
    box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.12) !important;
    transition: all 0.4s ease-in-out !important;
    z-index: 99999999 !important;
    max-height: 98% !important;
}

/* Mobile view */
@media (max-width: 768px) {
    #pickaxe-chatbotContainer {
        width: 95% !important;
        height: 80vh !important; /* adjust as needed */
        max-width: 98% !important;
        max-height: 98% !important;
        margin: auto !important;
        right: 8px !important;
        left: 8px !important;
    }
}

.pickaxe-hidden {
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important; /* This ensures that even if the iframe loads, it won't be visible */
    display: none !important;
}

.pickaxe-visible {
    width: 500px !important;
    height: 600px !important;
    opacity: 1 !important;
    display: flex !important;
    max-width: 100% !important;
}

.pickaxe-white {
    background-color: #ffffff !important;
}

.pickaxe-link {
    -webkit-text-decoration-skip: objects !important; /* 2 */
    color: #039be5 !important;
    text-decoration: none !important;
    -webkit-tap-highlight-color: transparent !important;
    text-decoration: none !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box !important;
}

.pickaxe-img {
    border-style: none !important;
    -webkit-box-sizing: inherit !important;
    box-sizing: inherit !important;
    min-width: 32px !important;
    min-height: 32px !important;
}

.pickaxe-btn,
.pickaxe-btn-large,
.pickaxe-btn-small,
.pickaxe-btn-flat {
    border: none !important;
    border-radius: 2px !important;
    display: inline-block !important;
    height: 36px !important;
    line-height: 36px !important;
    padding: 0 16px !important;
    text-transform: uppercase !important;
    vertical-align: middle !important;
    -webkit-tap-highlight-color: transparent !important;
}

.pickaxe-btn,
.pickaxe-btn-large,
.pickaxe-btn-small,
.pickaxe-btn-floating,
.pickaxe-btn-large,
.pickaxe-btn-small,
.pickaxe-btn-flat {
    font-size: 14px !important;
    outline: 0 !important;
}

.pickaxe-btn i,
.pickaxe-btn-large i,
.pickaxe-btn-small i,
.pickaxe-btn-floating i,
.pickaxe-btn-large i,
.pickaxe-btn-small i,
.pickaxe-btn-flat i {
    font-size: 1.3rem !important;
    line-height: inherit !important;
}

.pickaxe-btn:focus,
.pickaxe-btn-large:focus,
.pickaxe-btn-small:focus,
.pickaxe-btn-floating:focus {
    background-color: #1d7d74 !important;
}

.pickaxe-btn,
.pickaxe-btn-large,
.pickaxe-btn-small {
    text-decoration: none !important;
    color: #fff !important;
    background-color: #26a69a !important;
    text-align: center !important;
    letter-spacing: 0.5px !important;
    -webkit-transition: background-color 0.2s ease-out !important;
    -moz-transition: background-color 0.2s ease-out !important;
    -o-transition: background-color 0.2s ease-out !important;
    transition: background-color 0.2s ease-out !important;
    cursor: pointer !important;
}

.pickaxe-btn:hover,
.pickaxe-btn-large:hover,
.pickaxe-btn-small:hover {
    background-color: #2bbbad !important;
}

.pickaxe-btn-floating {
    display: inline-block !important;
    color: #fff !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    width: 40px !important;
    height: 40px !important;
    line-height: 40px !important;
    padding: 0 !important;
    background-color: #26a69a !important;
    border-radius: 50% !important;
    -webkit-transition: background-color 0.3s !important;
    transition: background-color 0.3s !important;
    cursor: pointer !important;
    vertical-align: middle !important;
}

.pickaxe-btn-floating:hover {
    background-color: #26a69a !important;
}

.pickaxe-btn-floating:before {
    border-radius: 0 !important;
}

.btn-floating.pickaxe-btn-large {
    width: 56px !important;
    height: 56px !important;
    padding: 0 !important;
}

.btn-floating.btn-large.pickaxe-halfway-fab {
    bottom: -28px !important;
}

.btn-floating.pickaxe-btn-large i {
    line-height: 56px !important;
}

.btn-floating.pickaxe-btn-small {
    width: 32.4px !important;
    height: 32.4px !important;
}

.pickaxe-fixed-action-btn {
    position: fixed !important;
    right: 23px !important;
    bottom: 23px !important;
    padding-top: 15px !important;
    margin-bottom: 0 !important;
    z-index: 9999 !important;
}

.pickaxe-btn-large {
    height: 54px !important;
    line-height: 54px !important;
    font-size: 15px !important;
    padding: 0 28px !important;
}

.pickaxe-waves-effect {
    position: relative !important;
    cursor: pointer !important;
    display: inline-block !important;
    overflow: hidden !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
    vertical-align: middle !important;
    z-index: 1 !important;
    -webkit-transition: background-color 0.3s ease-out !important;
    -moz-transition: background-color 0.3s ease-out !important;
    -o-transition: background-color 0.3s ease-out !important;
    transition: background-color 0.3s ease-out !important;
}

.pickaxe-waves-effect img {
    position: relative !important;
    z-index: -1 !important;
}
