.wcp-chat-widget {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    z-index: 1;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wcp-chat-panel {
    width: 100%;
    height: 100vh;
    margin-top: 0;
    border: 1px solid #2a2a2a;
    overflow: hidden;
    background: #1a1a1a;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}

.wcp-chat-panel.wcp-chat-drop-active {
    border-color: #fed700;
    box-shadow: 0 0 0 3px rgba(254, 215, 0, 0.22);
}

.wcp-chat-panel.wcp-chat-drop-active .wcp-chat-messages {
    background: #1f1f1f;
}

.wcp-chat-header {
    color: #1a1a1a;
    background: #fed700;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

.wcp-chat-quick-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 10px;
    background: #1a1a1a;
}

.wcp-chat-quick-button {
    border: 1px solid #fed700;
    background: #fed700;
    color: #1a1a1a;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    cursor: pointer;
}

.wcp-chat-quick-button:hover {
    background: #e6c200;
}

.wcp-chat-messages {
    height: auto;
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 12px;
    background: #1a1a1a;
}

.wcp-chat-message {
    margin: 0 0 10px;
    padding: 8px 10px;
    border-radius: 10px;
    line-height: 1.35;
    width: fit-content;
    max-width: 92%;
}

.wcp-chat-message-user {
    margin-left: auto;
    background: #fed700;
    color: #1a1a1a;
}

.wcp-chat-message-admin {
    background: #2b2b2b;
    border: 1px solid #3a3a3a;
    color: #f5f5f5;
}

.wcp-chat-message-meta {
    font-size: 11px;
    color: #1a1a1a;
    margin-top: 4px;
}

.wcp-chat-message-admin .wcp-chat-message-meta{
    color: #f5f5f5;
}

.wcp-chat-form {
    display: flex;
    gap: 8px;
    border-top: 1px solid #2a2a2a;
    padding: 10px;
    background: #1a1a1a;
}

.wcp-chat-input {
    flex: 1;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    padding: 8px 10px;
    outline: none;
    background: #2a2a2a;
    color: #f5f5f5;
}

.wcp-chat-input:focus {
    border-color: #fed700;
}

.wcp-chat-submit {
    border: 0;
    border-radius: 8px;
    background: #fed700;
    color: #1a1a1a;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 600;
}

.wcp-chat-photo {
    border: 1px solid #fed700;
    border-radius: 8px;
    background: #fed700;
    color: #1a1a1a;
    width: 38px;
    height: 38px;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wcp-chat-photo:hover {
    background: #e6c200;
}

.wcp-chat-photo-icon {
    font-size: 18px;
    line-height: 1;
}

.wcp-chat-submit:hover {
    background: #e6c200;
}

.wcp-chat-message-image {
    display: block;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}
