/* Elite Oil Bot Frontend Styles */

/* Widget Container */
.eliteoilbot-widget {
    position: fixed !important;
    z-index: 999999 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    --eliteoilbot-color: #007cba;
    /* Ensure widget never goes completely off-screen */
    min-width: 80px !important;
    min-height: 80px !important;
}

/* Positioning Classes */
.eliteoilbot-position-bottom-right {
    bottom: 20px !important;
    right: 20px !important;
}

.eliteoilbot-position-bottom-left {
    bottom: 20px !important;
    left: 20px !important;
}

.eliteoilbot-position-top-right {
    top: 20px !important;
    right: 20px !important;
}

.eliteoilbot-position-top-left {
    top: 20px !important;
    left: 20px !important;
}

/* Toggle Button */
.eliteoilbot-toggle {
    position: relative !important;
    cursor: pointer !important;
    z-index: 1000001 !important;
}

/* Oil Specialist Character */
.eliteoilbot-oil-specialist {
    background: white !important;
    border-radius: 50% !important;
    width: 80px !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    border: 3px solid var(--eliteoilbot-color) !important;
    animation: eliteoilbot-character-float 6s ease-in-out infinite !important;
    transition: transform 0.3s ease !important;
}

.eliteoilbot-toggle:hover .eliteoilbot-oil-specialist {
    transform: scale(1.1) !important;
    animation: eliteoilbot-character-excited 0.5s ease-in-out !important;
}

.eliteoilbot-specialist-svg {
    width: 60px !important;
    height: 60px !important;
}

/* Character Animations */
@keyframes eliteoilbot-character-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-3px) rotate(1deg); }
}

@keyframes eliteoilbot-character-excited {
    0%, 100% { transform: scale(1.1) rotate(0deg); }
    25% { transform: scale(1.15) rotate(-2deg); }
    75% { transform: scale(1.15) rotate(2deg); }
}

/* Hand Waving Animation */
.eliteoilbot-hand-wave {
    animation: eliteoilbot-wave 8s ease-in-out infinite !important;
    transform-origin: 18px 38px !important;
}

@keyframes eliteoilbot-wave {
    0%, 85%, 100% { transform: rotate(0deg); }
    10%, 15% { transform: rotate(15deg); }
    12% { transform: rotate(-10deg); }
    17%, 20% { transform: rotate(10deg); }
}

/* Oil Pouring Animation */
.eliteoilbot-oil-pour {
    animation: eliteoilbot-pour 10s ease-in-out infinite !important;
}

.eliteoilbot-oil-stream {
    opacity: 0 !important;
    animation: eliteoilbot-oil-flow 10s ease-in-out infinite !important;
}

@keyframes eliteoilbot-pour {
    0%, 90%, 100% { transform: rotate(0deg); }
    5%, 15% { transform: rotate(-10deg); }
}

@keyframes eliteoilbot-oil-flow {
    0%, 90%, 100% { opacity: 0; }
    5%, 15% { opacity: 1; }
}

/* Speech Bubble */
.eliteoilbot-speech-bubble {
    position: absolute !important;
    bottom: 90px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: white !important;
    color: #333 !important;
    padding: 12px 16px !important;
    border-radius: 18px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    white-space: normal !important;
    max-width: 200px !important;
    text-align: center !important;
    line-height: 1.3 !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15) !important;
    border: 2px solid var(--eliteoilbot-color) !important;
    animation: eliteoilbot-speech-appear 0.5s ease-out 0.5s both, eliteoilbot-speech-bounce 3s ease-in-out 1s infinite !important;
    z-index: 1000000 !important;
}

.eliteoilbot-toggle:hover .eliteoilbot-speech-bubble {
    background: var(--eliteoilbot-color) !important;
    color: white !important;
    transform: translateX(-50%) scale(1.05) !important;
}

.eliteoilbot-speech-text {
    display: block !important;
}

/* Speech bubble HTML formatting */
.eliteoilbot-speech-text strong {
    font-weight: 700 !important;
    color: inherit !important;
}

.eliteoilbot-speech-text small {
    font-size: 11px !important;
    opacity: 0.9 !important;
    color: inherit !important;
}

.eliteoilbot-speech-text em {
    font-style: italic !important;
    color: inherit !important;
}

.eliteoilbot-speech-text br {
    line-height: 1.2 !important;
}

.eliteoilbot-speech-tail {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-top: 8px solid white !important;
}

.eliteoilbot-toggle:hover .eliteoilbot-speech-tail {
    border-top-color: var(--eliteoilbot-color) !important;
}

/* Speech Bubble Animations */
@keyframes eliteoilbot-speech-appear {
    0% { opacity: 0; transform: translateX(-50%) translateY(10px) scale(0.8); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0px) scale(1); }
}

@keyframes eliteoilbot-speech-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0px) scale(1); }
    50% { transform: translateX(-50%) translateY(-2px) scale(1.02); }
}

/* Chat Window */
.eliteoilbot-chat-window {
    position: absolute !important;
    bottom: 100px !important;
    right: 0 !important;
    width: 350px !important;
    height: 633px !important;
    background: white !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #e1e5e9 !important;
    display: none !important;
    flex-direction: column !important;
    overflow: hidden !important;
    z-index: 1000000 !important;
    /* Viewport safety - never exceed screen boundaries */
    max-width: calc(100vw - 20px) !important;
    max-height: calc(100vh - 120px) !important;
}

.eliteoilbot-chat-window.eliteoilbot-open {
    display: flex !important;
    animation: eliteoilbot-window-appear 0.3s ease-out !important;
}

@keyframes eliteoilbot-window-appear {
    0% { opacity: 0; transform: translateY(20px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0px) scale(1); }
}

/* Chat Header */
.eliteoilbot-chat-header {
    background: var(--eliteoilbot-color) !important;
    color: white !important;
    padding: 16px 20px !important;
    position: relative !important;
}

.eliteoilbot-header-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.eliteoilbot-chat-header h3 {
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: white !important;
}

.eliteoilbot-close-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: none !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    transition: background 0.2s ease !important;
}

.eliteoilbot-close-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

/* Messages Area */
.eliteoilbot-messages {
    flex: 1 !important;
    padding: 20px !important;
    overflow-y: auto !important;
    background: #fafbfc !important;
    /* Smooth scrolling behavior */
    scroll-behavior: smooth !important;
}

.eliteoilbot-message {
    margin-bottom: 16px !important;
    display: flex !important;
    animation: eliteoilbot-message-appear 0.3s ease-out !important;
}

.eliteoilbot-message-user {
    justify-content: flex-end !important;
}

.eliteoilbot-message-bot {
    justify-content: flex-start !important;
}

.eliteoilbot-message-content {
    max-width: 85% !important;
    background: white !important;
    border-radius: 16px !important;
    padding: 12px 16px !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e1e5e9 !important;
}

.eliteoilbot-message-user .eliteoilbot-message-content {
    background: var(--eliteoilbot-color) !important;
    color: white !important;
    border-color: var(--eliteoilbot-color) !important;
}

.eliteoilbot-message-text {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    color: #333 !important;
}

.eliteoilbot-message-text small {
    font-size: 11px !important;
    color: #666 !important;
    line-height: 1.3 !important;
}

.eliteoilbot-message-user .eliteoilbot-message-text {
    color: white !important;
}

@keyframes eliteoilbot-message-appear {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0px); }
}

/* Input Area */
.eliteoilbot-input-area {
    padding: 16px 20px !important;
    background: white !important;
    border-top: 1px solid #e1e5e9 !important;
}

.eliteoilbot-input-wrapper {
    display: flex !important;
    gap: 10px !important;
    align-items: flex-end !important;
}

.eliteoilbot-input {
    flex: 1 !important;
    background: white !important;
    border: 1px solid #d1d5db !important;
    border-radius: 20px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    color: #333 !important;
    outline: none !important;
    transition: border-color 0.2s ease !important;
    resize: none !important;
    min-height: 44px !important;
    max-height: 100px !important;
}

.eliteoilbot-input:focus {
    border-color: var(--eliteoilbot-color) !important;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1) !important;
}

.eliteoilbot-send-btn {
    background: var(--eliteoilbot-color) !important;
    color: white !important;
    border: none !important;
    border-radius: 20px !important;
    padding: 12px 20px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    min-width: 70px !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.2s ease, transform 0.1s ease !important;
}

.eliteoilbot-send-btn:hover {
    background: #005a87 !important;
    transform: translateY(-1px) !important;
}

.eliteoilbot-send-btn:active {
    transform: translateY(0px) !important;
}

.eliteoilbot-send-text {
    display: block !important;
}

/* Loading Overlay */
.eliteoilbot-loading {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.5) !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 1000002 !important;
}

.eliteoilbot-loading.eliteoilbot-show {
    display: flex !important;
}

.eliteoilbot-loading-content {
    background: white !important;
    padding: 30px !important;
    border-radius: 16px !important;
    text-align: center !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
    max-width: 300px !important;
}

.eliteoilbot-spinner {
    width: 40px !important;
    height: 40px !important;
    border: 4px solid #f3f3f3 !important;
    border-top: 4px solid var(--eliteoilbot-color) !important;
    border-radius: 50% !important;
    animation: eliteoilbot-spin 1s linear infinite !important;
    margin: 0 auto 20px !important;
}

@keyframes eliteoilbot-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.eliteoilbot-loading-content p {
    margin: 0 !important;
    font-size: 16px !important;
    color: #333 !important;
    line-height: 1.5 !important;
}

.eliteoilbot-loading-dots {
    font-weight: bold !important;
    animation: eliteoilbot-flash 1.5s ease-in-out infinite !important;
}

@keyframes eliteoilbot-flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Position Adjustments for Top Positions */
.eliteoilbot-position-top-right .eliteoilbot-chat-window,
.eliteoilbot-position-top-left .eliteoilbot-chat-window {
    bottom: auto !important;
    top: 100px !important;
}

.eliteoilbot-position-top-right .eliteoilbot-speech-bubble,
.eliteoilbot-position-top-left .eliteoilbot-speech-bubble {
    bottom: auto !important;
    top: 90px !important;
}

.eliteoilbot-position-left .eliteoilbot-chat-window {
    right: auto !important;
    left: 0 !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Adjust widget positioning for tablets */
    .eliteoilbot-position-bottom-right,
    .eliteoilbot-position-top-right {
        right: 15px !important;
    }
    
    .eliteoilbot-position-bottom-left,
    .eliteoilbot-position-top-left {
        left: 15px !important;
    }
    
    .eliteoilbot-chat-window {
        width: 300px !important;
        height: 572px !important;
        bottom: 90px !important;
    }
    
    /* Right-positioned widgets: align chat window to right edge */
    .eliteoilbot-position-bottom-right .eliteoilbot-chat-window,
    .eliteoilbot-position-top-right .eliteoilbot-chat-window {
        right: 15px !important;
        left: auto !important;
    }
    
    /* Left-positioned widgets: align chat window to left edge */
    .eliteoilbot-position-bottom-left .eliteoilbot-chat-window,
    .eliteoilbot-position-top-left .eliteoilbot-chat-window {
        left: 15px !important;
        right: auto !important;
    }
}

@media (max-width: 480px) {
    /* Adjust widget positioning for mobile phones */
    .eliteoilbot-position-bottom-right,
    .eliteoilbot-position-top-right {
        right: 10px !important;
    }
    
    .eliteoilbot-position-bottom-left,
    .eliteoilbot-position-top-left {
        left: 10px !important;
    }
    
    /* Mobile speech bubble adjustments */
    .eliteoilbot-speech-bubble {
        max-width: 160px !important;
        font-size: 12px !important;
        padding: 10px 12px !important;
    }
    
    .eliteoilbot-speech-text small {
        font-size: 10px !important;
    }
    
    /* Mobile chat window - use fixed positioning to ensure it stays on screen */
    .eliteoilbot-chat-window {
        position: fixed !important;
        width: calc(100vw - 20px) !important;
        max-width: 300px !important;
        height: 75vh !important;
        max-height: 506px !important;
        bottom: 80px !important;
        right: 10px !important;
        left: auto !important;
        margin: 0 !important;
        transform: none !important;
        z-index: 1000000 !important;
    }
    
    /* Left-positioned widgets: align to left */
    .eliteoilbot-position-bottom-left .eliteoilbot-chat-window,
    .eliteoilbot-position-top-left .eliteoilbot-chat-window {
        left: 10px !important;
        right: auto !important;
    }
    
    /* Top-positioned widgets: adjust bottom spacing */
    .eliteoilbot-position-top-right .eliteoilbot-chat-window,
    .eliteoilbot-position-top-left .eliteoilbot-chat-window {
        bottom: 80px !important;
        top: auto !important;
    }
    
    .eliteoilbot-oil-specialist {
        width: 70px !important;
        height: 70px !important;
    }
    
    .eliteoilbot-specialist-svg {
        width: 50px !important;
        height: 50px !important;
    }
}

/* Ultra-small screens (very small phones) */
@media (max-width: 360px) {
    /* Widget positioning */
    .eliteoilbot-position-bottom-right,
    .eliteoilbot-position-top-right {
        right: 7px !important;
    }
    
    .eliteoilbot-position-bottom-left,
    .eliteoilbot-position-top-left {
        left: 7px !important;
    }
    
    /* Ultra-small mobile chat window */
    .eliteoilbot-chat-window {
        width: calc(100vw - 14px) !important;
        height: 65vh !important;
        max-height: 440px !important;
        right: 7px !important;
    }
    
    /* Left-positioned widgets */
    .eliteoilbot-position-bottom-left .eliteoilbot-chat-window,
    .eliteoilbot-position-top-left .eliteoilbot-chat-window {
        left: 7px !important;
        right: auto !important;
    }
    
    .eliteoilbot-oil-specialist {
        width: 65px !important;
        height: 65px !important;
    }
    
    /* Ultra-small speech bubble adjustments */
    .eliteoilbot-speech-bubble {
        max-width: 140px !important;
        font-size: 11px !important;
        padding: 8px 10px !important;
    }
    
    .eliteoilbot-speech-text small {
        font-size: 9px !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .eliteoilbot-input {
        background: white !important;
        color: #333 !important;
        border-color: #d1d5db !important;
    }
}

/* Input Loading Indicator */
.eliteoilbot-input-loading {
    text-align: center !important;
    margin-bottom: 10px !important;
    padding: 8px 12px !important;
    background: rgba(0, 124, 186, 0.1) !important;
    border-radius: 15px !important;
    border: 1px solid rgba(0, 124, 186, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.eliteoilbot-input-loading .eliteoilbot-loading-text {
    font-size: 13px !important;
    color: #666 !important;
    font-weight: 600 !important;
    animation: eliteoilbot-loading-flash 1.5s ease-in-out infinite !important;
    display: block !important;
    margin-bottom: 0 !important;
}

/* Progressive Loading Messages */
.eliteoilbot-loading-secondary {
    margin-top: 8px !important;
    text-align: center !important;
}

.eliteoilbot-loading-secondary-text {
    font-size: 12px !important;
    color: #007cba !important;
    font-weight: 500 !important;
    animation: eliteoilbot-loading-flash-secondary 1.2s ease-in-out infinite !important;
    display: block !important;
}

.eliteoilbot-loading-timeout {
    margin-top: 8px !important;
    text-align: center !important;
}

.eliteoilbot-loading-timeout-text {
    font-size: 11px !important;
    color: #dc3545 !important;
    font-weight: 500 !important;
    animation: eliteoilbot-loading-flash-timeout 1s ease-in-out infinite !important;
    display: block !important;
}

@keyframes eliteoilbot-loading-flash {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes eliteoilbot-loading-flash-secondary {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@keyframes eliteoilbot-loading-flash-timeout {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* ==========================================================================
   Flowing Oil Effect for Loading
   ========================================================================== */

/* Oil Flow Container */
.eliteoilbot-oil-flow-container {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

/* Oil Drops */
.eliteoilbot-oil-drop {
    position: absolute !important;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%) !important;
    border-radius: 50% 50% 50% 70% !important;
    opacity: 0.7 !important;
    animation: eliteoilbot-oil-drop-fall 3s ease-in-out infinite !important;
}

.eliteoilbot-oil-drop-1 {
    width: 4px !important;
    height: 6px !important;
    left: 20% !important;
    animation-delay: 0s !important;
}

.eliteoilbot-oil-drop-2 {
    width: 3px !important;
    height: 5px !important;
    left: 50% !important;
    animation-delay: 1s !important;
}

.eliteoilbot-oil-drop-3 {
    width: 5px !important;
    height: 7px !important;
    left: 80% !important;
    animation-delay: 2s !important;
}

/* Oil Wave Effect */
.eliteoilbot-oil-wave {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.6) 25%, 
        rgba(255, 165, 0, 0.8) 50%, 
        rgba(255, 140, 0, 0.6) 75%, 
        transparent 100%) !important;
    animation: eliteoilbot-oil-wave-flow 2s ease-in-out infinite !important;
}

/* Oil Drop Animation */
@keyframes eliteoilbot-oil-drop-fall {
    0% {
        top: -8px;
        opacity: 0;
        transform: scale(0.8);
    }
    10% {
        opacity: 0.7;
        transform: scale(1);
    }
    90% {
        opacity: 0.7;
        transform: scale(1);
    }
    100% {
        top: 100%;
        opacity: 0;
        transform: scale(0.6);
    }
}

/* Oil Wave Animation */
@keyframes eliteoilbot-oil-wave-flow {
    0%, 100% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(100%);
        opacity: 1;
    }
}

/* Ensure text is above oil effect */
.eliteoilbot-loading-text,
.eliteoilbot-loading-secondary-text,
.eliteoilbot-loading-timeout-text {
    position: relative !important;
    z-index: 2 !important;
}

/* Character Animations */
@keyframes eliteoilbot-hand-wave {
    0%, 85%, 100% { transform: rotate(0deg); }
    5%, 15% { transform: rotate(-8deg); }
    10% { transform: rotate(8deg); }
}

@keyframes eliteoilbot-oil-pour {
    0%, 70% { opacity: 0; }
    75% { opacity: 1; }
    85% { opacity: 1; }
    95% { opacity: 0.6; }
    100% { opacity: 0; }
}

@keyframes eliteoilbot-can-tip {
    0%, 70%, 100% { transform: rotate(-5deg); }
    75%, 95% { transform: rotate(-25deg); }
}

/* Apply animations to character elements */
.eliteoilbot-hand-wave {
    animation: eliteoilbot-hand-wave 4s ease-in-out infinite !important;
    transform-origin: 22px 32px !important; /* Rotate from shoulder connection point */
}

.eliteoilbot-oil-stream {
    animation: eliteoilbot-oil-pour 6s ease-in-out infinite !important;
}

/* Oil can tipping animation */
.eliteoilbot-oil-can {
    animation: eliteoilbot-can-tip 6s ease-in-out infinite !important;
    transform-origin: 44px 40px !important; /* Tip from bottom center of can */
}

/* Admin Styles */
.eliteoilbot-admin-section {
    margin: 20px 0 !important;
    padding: 20px !important;
    background: #f9f9f9 !important;
    border-radius: 8px !important;
}

.eliteoilbot-admin-section h2 {
    margin-top: 0 !important;
    color: #333 !important;
    border-bottom: 2px solid var(--eliteoilbot-color) !important;
    padding-bottom: 10px !important;
} 

/* ==========================================================================
   Connection Status Indicator
   ========================================================================== */

/* Connection Status Indicator */
.eliteoilbot-connection-status {
    margin-top: 8px !important;
    text-align: center !important;
    font-size: 14px !important;
    line-height: 1 !important;
    max-width: 100% !important;
}

.eliteoilbot-status-text {
    font-weight: bold !important;
    transition: color 0.3s ease !important;
    display: block !important;
    font-size: 14px !important;
}

.eliteoilbot-status-good {
    color: #28a745 !important; /* Green */
}

.eliteoilbot-status-bad {
    color: #dc3545 !important; /* Red */
}

.eliteoilbot-status-testing {
    color: #666 !important; /* Gray */
}

.eliteoilbot-status-ready {
    color: #6c757d !important; /* Light gray */
}

/* Input Area Padding Adjustment */
.eliteoilbot-input-area {
    padding: 15px 20px 20px 20px !important; /* Extra bottom padding for status */
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .eliteoilbot-connection-status {
        font-size: 12px !important;
    }
    
    .eliteoilbot-status-text {
        font-size: 12px !important;
    }
    
    .eliteoilbot-input-area {
        padding: 12px 15px 18px 15px !important;
    }
    
    /* Mobile loading messages */
    .eliteoilbot-loading-text {
        font-size: 12px !important;
    }
    
    .eliteoilbot-loading-secondary-text {
        font-size: 11px !important;
    }
    
    .eliteoilbot-loading-timeout-text {
        font-size: 10px !important;
    }
    
    /* Mobile oil effect adjustments */
    .eliteoilbot-oil-drop-1 {
        width: 3px !important;
        height: 5px !important;
    }
    
    .eliteoilbot-oil-drop-2 {
        width: 2px !important;
        height: 4px !important;
    }
    
    .eliteoilbot-oil-drop-3 {
        width: 4px !important;
        height: 6px !important;
    }
    
    .eliteoilbot-oil-wave {
        height: 2px !important;
    }
} 