/* SKYAI Neon Futuristic Glass UI */

#skybot-launcher {
    position: fixed;
    bottom: 28px;
    right: 30px;
    z-index: 999999;
}

#skybot-button {
    width: 70px;
    height: 70px;
    background: rgba(10, 10, 10, 0.7);
    border-radius: 50%;
    backdrop-filter: blur(12px);
    border: 2px solid #00eaff;
    box-shadow: 0 0 20px #00eaff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

#skybot-button .glow-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 25px #00eaff, 0 0 40px #00eaff inset;
    animation: glowPulse 2s infinite alternate;
}

@keyframes glowPulse {
    0% { opacity: .7; }
    100% { opacity: 1; }
}

#skybot-container {
    position: fixed;
    bottom: 115px;
    right: 30px;
    width: 360px;
    height: 520px;
    background: rgba(15, 15, 20, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid #00eaff;
    border-radius: 18px;
    box-shadow: 0 0 35px #00eaff;
    display: none;
    flex-direction: column;
    z-index: 999999;
}

#skybot-container.open {
    display: flex;
}

#skybot-header {
    display: flex;
    justify-content: space-between;
    padding: 14px;
    border-bottom: 1px solid #00eaff;
    color: white;
    font-size: 18px;
}

#skybot-close {
    cursor: pointer;
    font-size: 20px;
}

#skybot-messages {
    padding: 12px;
    overflow-y: auto;
    flex-grow: 1;
}

.skybot-bubble {
    max-width: 85%;
    padding: 10px 14px;
    margin: 8px 0;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.35em;
}

.skybot-bubble.bot {
    background: rgba(0, 234, 255, 0.2);
    border: 1px solid #00eaff;
    color: #e3faff;
}

.skybot-bubble.user {
    background: rgba(255,255,255,0.15);
    border: 1px solid #ffffff55;
    color: white;
    margin-left: auto;
}

#skybot-input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid #00eaff;
}

#skybot-input {
    flex-grow: 1;
    padding: 8px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid #00eaff;
    color: white;
}

#skybot-send {
    margin-left: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid #00eaff;
    background: #00eaff33;
    color: white;
    cursor: pointer;
}

#skybot-upload-area {
    padding-left: 10px;
    padding-bottom: 5px;
}

#skybot-upload-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid #00eaff;
    padding: 5px 8px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
}
