/* Leezi CRM - Admin Styles */

.leezi-crm-admin {
    max-width: 1400px;
}

.leezi-crm-container {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.leezi-crm-main {
    flex: 1;
}

.leezi-crm-sidebar {
    width: 350px;
}

.leezi-crm-admin .card {
    background: #fff;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    padding: 20px;
    margin-bottom: 20px;
}

.leezi-crm-admin .card h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.leezi-crm-admin .card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

/* Toggle Switch */
.leezi-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.leezi-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.leezi-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.leezi-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.leezi-toggle input:checked + .leezi-toggle-slider {
    background-color: #2271b1;
}

.leezi-toggle input:focus + .leezi-toggle-slider {
    box-shadow: 0 0 1px #2271b1;
}

.leezi-toggle input:checked + .leezi-toggle-slider:before {
    transform: translateX(26px);
}

/* Tabela de informações */
.leezi-crm-admin .widefat td {
    padding: 12px 10px;
    vertical-align: middle;
}

.leezi-crm-admin .widefat code {
    background: #f0f0f1;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 13px;
}

/* Lista de instruções */
.leezi-crm-sidebar ol {
    padding-left: 20px;
    margin: 15px 0;
}

.leezi-crm-sidebar ol li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.leezi-crm-sidebar ul {
    padding-left: 20px;
    margin: 15px 0;
}

.leezi-crm-sidebar ul li {
    margin-bottom: 5px;
}

/* Card de suporte */
.leezi-crm-support {
    text-align: center;
}

.leezi-crm-support p {
    margin: 10px 0;
}

/* Responsivo */
@media (max-width: 1024px) {
    .leezi-crm-container {
        flex-direction: column;
    }
    
    .leezi-crm-sidebar {
        width: 100%;
    }
}

/* Notices customizadas */
.leezi-crm-admin .notice {
    margin: 15px 0;
}

/* Form table customizado */
.leezi-crm-admin .form-table th {
    width: 200px;
    padding: 20px 10px 20px 0;
}

.leezi-crm-admin .form-table td {
    padding: 15px 10px;
}

.leezi-crm-admin .form-table .description {
    margin-top: 5px;
    color: #646970;
    font-size: 13px;
}

/* Botão de submit */
.leezi-crm-admin .submit {
    padding-top: 10px;
    margin-top: 0;
}
