/* Chatim WordPress Plugin Admin Styles */

.chatim-auth-wrap {
    max-width: 800px;
}

.chatim-connected {
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
}

.chatim-user-info h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.chatim-actions {
    margin-top: 20px;
}

.chatim-actions .button {
    margin-right: 10px;
}

.chatim-auth-forms {
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    padding: 20px;
    margin-top: 20px;
}

.chatim-tabs {
    border-bottom: 1px solid #c3c4c7;
    margin-bottom: 20px;
}

.chatim-tab-button {
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    font-size: 14px;
    font-weight: 500;
    color: #646970;
    margin-right: 10px;
}

.chatim-tab-button.active {
    color: #1d2327;
    border-bottom-color: #0073aa;
}

.chatim-tab-button:hover {
    color: #1d2327;
}

.chatim-tab-content {
    display: none;
}

.chatim-tab-content.active {
    display: block;
}

.chatim-tab-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
}

.chatim-loading {
    color: #646970;
    font-style: italic;
    margin-left: 10px;
}

#chatim-auth-messages {
    margin-top: 20px;
}

#chatim-auth-messages .notice {
    margin: 5px 0;
}

#chatim-auth-messages .notice p {
    margin: 0.5em 0;
}

.chatim-error {
    background: #fcf2f2;
    border-left: 4px solid #dc3232;
    padding: 12px;
    margin: 15px 0;
}

.chatim-success {
    background: #f0f8f0;
    border-left: 4px solid #00a32a;
    padding: 12px;
    margin: 15px 0;
}

.form-table th {
    width: 120px;
}

.form-table td input[type="text"],
.form-table td input[type="email"],
.form-table td input[type="password"] {
    width: 300px;
}

.chatim-tab-content form .submit {
    margin-top: 20px;
}

/* Widget Management Styles */
.chatim-widget-management {
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
}

.chatim-widget-management h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.chatim-widget-actions {
    margin-top: 15px;
}

.chatim-widget-actions .button {
    margin-right: 10px;
    margin-bottom: 5px;
}

.chatim-account-actions {
    background: #fff;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
}

.chatim-account-actions h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

#chatim-project-selection {
    margin-top: 20px;
}

#chatim-project-selection h4 {
    margin-bottom: 10px;
}

.chatim-projects-grid {
    display: grid;
    gap: 15px;
    margin: 15px 0;
}

.chatim-project-card {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 4px;
    background: #fff;
    transition: border-color 0.2s ease;
}

.chatim-project-card:hover {
    border-color: #0073aa;
}

.chatim-project-card h5 {
    margin: 0 0 10px 0;
    color: #1d2327;
    font-size: 14px;
    font-weight: 600;
}

.chatim-project-card p {
    margin: 0 0 10px 0;
    font-size: 13px;
}

.chatim-project-card .button {
    margin-top: 10px;
}

#chatim-widget-messages {
    margin-top: 20px;
}

#chatim-widget-messages .notice {
    margin: 5px 0;
}

@media (max-width: 782px) {
    .form-table td input[type="text"],
    .form-table td input[type="email"],
    .form-table td input[type="password"] {
        width: 100%;
    }
    
    .chatim-actions .button,
    .chatim-widget-actions .button {
        display: block;
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }
    
    .chatim-projects-grid {
        grid-template-columns: 1fr;
    }
}