/* ----------------------------------------
   Aarambha Case Management Admin
----------------------------------------- */

/* Preview Column */
.wp-list-table .column-preview {
    width: 72px;
}

.wp-list-table .column-preview img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

/* Status Badge */
.acm-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.acm-status-pending {
    background: #fff4d6;
    color: #8a6700;
}

.acm-status-in_progress {
    background: #dbeafe;
    color: #1d4ed8;
}

.acm-status-resolved {
    background: #dcfce7;
    color: #15803d;
}

.acm-status-closed {
    background: #e5e7eb;
    color: #374151;
}

/* Files Count */
.column-attachment_count {
    width: 70px;
    text-align: center;
}

/* Created Date */
.column-created_at {
    width: 170px;
}

/* Email */
.column-customer_email {
    min-width: 220px;
}

/* Phone */
.column-phone {
    width: 140px;
}

/* Preview Placeholder */
.acm-preview-placeholder {
    width: 60px;
    height: 60px;
    border: 1px dashed #dcdcde;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8c8f94;
}

/* Details page */
.acm-attachments {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.acm-attachment {
    width: 180px;
    text-align: center;
}

.acm-attachment img {
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.acm-attachment .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
}

.acm-attachment p {
    margin-top: 10px;
    word-break: break-word;
}
/* email settings page */
.acm-email-layout {
    display: flex !important;
    gap: 24px;
    align-items: flex-start !important;
}

.acm-email-main {
    flex: 1;
}

.acm-email-sidebar {
    width: 300px;
    position: sticky;
    top: 32px;
}

.placeholder-box {
    padding-left: 40px;
    background-color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
}
