#legalbot-pro-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    max-width: 90vw;
    height: 500px;
    max-height: 80vh;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 999999;
    transition: all 0.3s ease;
}

#legalbot-pro-container.legalbot-pro-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

#legalbot-pro-header {
    padding: 15px 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legalbot-pro-header-info {
    display: flex;
    flex-direction: column;
}

.legalbot-pro-title {
    font-weight: bold;
    font-size: 16px;
}

.legalbot-pro-status {
    font-size: 12px;
    opacity: 0.8;
}

#legalbot-pro-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

#legalbot-pro-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f9f9f9;
}

.legalbot-pro-message {
    margin-bottom: 15px;
    display: flex;
}

.legalbot-pro-bubble {
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.4;
    max-width: 85%;
}

.legalbot-pro-message.bot .legalbot-pro-bubble {
    background: #fff;
    color: #333;
    border: 1px solid #eee;
    border-bottom-left-radius: 2px;
}

.legalbot-pro-message.user .legalbot-pro-bubble {
    background: #0D1B2A;
    color: #fff;
    margin-left: auto;
    border-bottom-right-radius: 2px;
}

.legalbot-pro-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px;
}

.legalbot-pro-option {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    text-align: left;
    transition: all 0.2s;
}

.legalbot-pro-option:hover {
    border-color: #C6A75E;
    background: #fcfcfc;
}

#legalbot-pro-form-container {
    padding: 20px;
    background: #fff;
    border-top: 1px solid #eee;
}

#legalbot-pro-form input, 
#legalbot-pro-form textarea, 
#legalbot-pro-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

#legalbot-pro-form button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

#legalbot-pro-footer {
    padding: 10px 20px;
    background: #f1f1f1;
    font-size: 10px;
    color: #888;
    text-align: center;
}

#legalbot-pro-launcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.legalbot-pro-hidden {
    display: none !important;
}
