/* Container & Layout */
.fid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.fid-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.fid-logo h1 {
    margin: 0;
    font-size: 28px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button Styles */
.fid-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.fid-btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.fid-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.fid-btn-secondary {
    background: #6c757d;
    color: #fff;
}

.fid-btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.3);
}

/* Stats Grid */
.fid-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.fid-stat-card {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.fid-stat-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.fid-stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
}

.fid-stat-label {
    font-size: 14px;
    color: #999;
    margin-top: 8px;
}

/* Search Bar */
.fid-search-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.fid-search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    min-width: 200px;
    text-align: center;
    height: 44px;
    line-height: 20px;
}

.fid-filter-select {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    text-align: center;
    height: 44px;
    line-height: 20px;
}

/* Table Styles */
.fid-table-container {
    overflow-x: auto;
}

.fid-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fid-table th {
    background: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: #222;
    border-bottom: 2px solid #e0e0e0;
}

.fid-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 14px;
}

.fid-table tbody tr:hover {
    background: #fff;
}

/* Alternating colors for log rows - Desktop & Mobile */
.fid-table tbody tr.fid-log-row:nth-child(odd) {
    background: #e8f1ff;
}

.fid-table tbody tr.fid-log-row:nth-child(even) {
    background: #f5f5f5;
}

.fid-table tbody tr.fid-log-row:hover {
    background: #d4e5ff;
}

/* Status Badges */
.fid-status-paid {
    background: #4caf50;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

.fid-status-overdue {
    background: #f44336;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.fid-status-pending {
    background: #ff9800;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.fid-status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.fid-status-badge.active {
    background: #4caf50;
    color: #fff;
}

.fid-status-badge.inactive {
    background: #9e9e9e;
    color: #fff;
}

/* Action Buttons */
.fid-action-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fid-icon-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 6px;
    transition: all 0.2s;
}

.fid-icon-btn:hover {
    background: #f0f0f0;
    transform: scale(1.15);
}

/* Verification Results */
.fid-verify-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 20px;
}

.fid-verify-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.fid-verify-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.fid-verify-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 30px 0;
}

.fid-verify-input {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    height: 44px;
    line-height: 20px;
}

.fid-verify-result {
    margin-top: 20px;
}

.verify-result {
    border-radius: 12px;
    overflow: hidden;
}

.verify-result.valid {
    border: 2px solid #4caf50;
}

.verify-result.expired {
    border: 2px solid #f44336;
}

.verify-result.invalid {
    border: 2px solid #999;
}

.verify-header {
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 3px solid;
}

.verify-header h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
}

.verify-result.valid .verify-header {
    border-color: #4caf50;
}

.verify-result.expired .verify-header {
    border-color: #f44336;
}

.verify-body {
    padding: 20px;
}

.family-head {
    margin-bottom: 15px;
}

.family-head h4 {
    margin: 0 0 8px 0;
    color: #333;
}

.family-head p {
    margin: 5px 0;
    color: #666;
}

.family-members {
    margin-bottom: 15px;
}

.family-members h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin: 15px 0;
}

.member-card {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
}

.member-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.member-name {
    font-weight: 600;
    font-size: 13px;
    color: #333;
    margin-bottom: 4px;
}

.member-relation {
    font-size: 12px;
    color: #999;
    text-transform: capitalize;
}

.payment-info {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

.payment-info p {
    margin: 8px 0;
    color: #333;
}

/* Scanner Styles */
.fid-scanner-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: auto;
    padding: 20px;
}

.fid-scanner-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: 100%;
}

.fid-scanner-wrapper {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.fid-scanner-video {
    width: 100%;
    max-height: 400px;
    border-radius: 8px;
}

.fid-scanner-controls {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 20px 0;
}

.fid-scanner-result {
    margin-top: 20px;
    max-width: 100%;
}

.scanner-result {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.scanner-result.valid {
    border-color: #4caf50;
    background: #f1f8f5;
}

.scanner-result.invalid {
    border-color: #f44336;
    background: #fef5f5;
}

/* Payment Portal */
.fid-payment-portal {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 20px;
}

.fid-payment-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.fid-payment-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 30px 0;
}

.payment-info-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    margin-top: 20px;
}

.payment-amount {
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border: 2px dashed #667eea;
    border-radius: 8px;
}

.payment-amount label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.payment-amount input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    text-align: center;
    height: 44px;
    line-height: 20px;
    box-sizing: border-box;
}

/* Family Card Styles */
.fid-family-card-container {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.fid-family-card {
    width: 100%;
    max-width: 450px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 30px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
    font-family: 'Arial', sans-serif;
}

.fid-family-card.inactive {
    background: linear-gradient(135deg, #ccc 0%, #999 100%);
    opacity: 0.7;
}

.fid-card-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.fid-card-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.fid-card-title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.fid-card-status {
    font-size: 14px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
}

.fid-card-body {
    margin-bottom: 20px;
}

.fid-card-code {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
}

.fid-card-head,
.fid-card-members {
    margin-bottom: 15px;
}

.fid-card-label {
    font-size: 11px;
    font-weight: 700;
    opacity: 0.8;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.fid-card-name {
    font-size: 18px;
    font-weight: 700;
}

.fid-members-list {
    font-size: 13px;
    line-height: 1.6;
}

.fid-member-item {
    margin: 4px 0;
}

/* Table Mini */
.fid-table-mini {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-top: 10px;
}

.fid-table-mini th {
    background: #f0f0f0;
    padding: 10px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #ddd;
}

.fid-table-mini td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.fid-family-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.fid-family-status {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
}

.fid-family-status.fid-status-paid {
    background: #4caf50;
    color: #fff;
}

.fid-family-status.fid-status-overdue {
    background: #f44336;
    color: #fff;
}

.fid-family-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.fid-info-section h4 {
    margin: 0 0 10px 0;
    color: #667eea;
}

.fid-info-section p {
    margin: 5px 0;
    font-size: 14px;
}

.fid-members-section,
.fid-payment-history {
    margin-top: 20px;
}

.fid-members-section h4,
.fid-payment-history h4 {
    margin: 0 0 15px 0;
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fid-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fid-form-row {
        flex-direction: column;
    }

    .fid-form-group {
        width: 100%;
    }

    .fid-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .fid-logo h1 {
        font-size: 22px;
    }

    .fid-family-info {
        grid-template-columns: 1fr;
    }

    .members-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .fid-table {
        font-size: 13px;
    }

    .fid-table th,
    .fid-table td {
        padding: 10px;
    }
}

/* Mobile Responsive Table - Collapsible Card View */
@media (max-width: 1024px) {
    .fid-table {
        font-size: 13px;
    }

    .fid-table th,
    .fid-table td {
        padding: 12px;
    }
    
    /* Hide less important columns on tablet */
    .fid-table th:nth-child(5),
    .fid-table td:nth-child(5),
    .fid-table th:nth-child(8),
    .fid-table td:nth-child(8) {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Convert table to card layout */
    .fid-table-container {
        overflow: visible;
        width: 100%;
        padding: 0 12px;
        box-sizing: border-box;
    }
    
    .fid-table,
    .fid-table thead,
    .fid-table tbody,
    .fid-table tr,
    .fid-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    
    .fid-table {
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
    }
    
    .fid-table tbody {
        padding: 0;
    }
    
    /* Hide table header */
    .fid-table thead {
        display: none;
    }
    
    /* Create collapsible card rows */
    .fid-table tbody tr.fid-family-card {
        background: #fff;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        margin: 0 0 12px 0;
        padding: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        overflow: visible;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        width: 100%;
        box-sizing: border-box;
    }
    
    .fid-table tbody tr.fid-family-card:hover {
        background: #fafafa;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        border-color: #667eea;
    }
    
    /* Expand arrow indicator */
    .fid-table tbody tr.fid-family-card::before {
        content: '▼';
        position: absolute;
        right: 12px;
        top: 12px;
        color: #667eea;
        font-size: 14px;
        transition: transform 0.3s ease;
        pointer-events: none;
    }
    
    .fid-table tbody tr.fid-family-card.expanded::before {
        transform: rotate(180deg);
    }
    
    /* Header Row - Always Visible */
    .fid-table tbody tr.fid-family-card > td {
        display: inline-block;
        padding: 8px;
        border: none;
        text-align: center;
        vertical-align: middle;
        margin: 0 2px;
        color: #333;
    }
    
    /* Checkbox column */
    .fid-table tbody tr.fid-family-card > td:nth-child(1) {
        width: auto;
        padding: 8px 4px;
    }
    
    /* Photo column */
    .fid-table tbody tr.fid-family-card > td:nth-child(2) {
        width: auto;
        padding: 8px 4px;
    }
    
    .fid-table tbody tr.fid-family-card > td:nth-child(2) img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #667eea;
    }
    
    /* Family Code column */
    .fid-table tbody tr.fid-family-card > td:nth-child(3) {
        text-align: left;
        font-weight: 600;
        color: #222;
        margin-right: auto;
        flex-grow: 1;
    }
    
    /* Head Name column */
    .fid-table tbody tr.fid-family-card > td:nth-child(4) {
        text-align: left;
        font-weight: 500;
        color: #333;
    }
    
    /* Hide detail columns by default */
    .fid-table tbody tr.fid-family-card > td:nth-child(n+5) {
        display: none;
    }
    
    /* Show details when expanded */
    .fid-table tbody tr.fid-family-card.expanded > td:nth-child(n+5) {
        display: block;
        width: 100%;
        padding: 12px;
        border: none;
        text-align: left;
        position: relative;
        margin: 6px 0;
        background: #fff;
        border-radius: 8px;
        padding-left: 50%;
        color: #333;
    }
    
    .fid-table tbody tr.fid-family-card.expanded > td:nth-child(n+5)::before {
        content: attr(data-label);
        position: absolute;
        left: 12px;
        font-weight: 700;
        color: #555;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Expanded state styling */
    .fid-table tbody tr.fid-family-card.expanded {
        display: block;
        padding: 12px;
        background: #fff;
        border-color: #667eea;
    }
    
    /* Header stays inline when expanded */
    .fid-table tbody tr.fid-family-card.expanded > td:nth-child(1),
    .fid-table tbody tr.fid-family-card.expanded > td:nth-child(2),
    .fid-table tbody tr.fid-family-card.expanded > td:nth-child(3),
    .fid-table tbody tr.fid-family-card.expanded > td:nth-child(4) {
        display: inline-block;
        margin-bottom: 12px;
    }
    
    /* Action buttons styling */
    .fid-action-buttons {
        display: none;
    }
    
    .fid-table tbody tr.fid-family-card.expanded .fid-action-buttons {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr);
        gap: 6px;
        width: 100% !important;
        padding: 12px !important;
        border-top: 2px solid #e0e0e0;
        margin: 12px 0 0 0 !important;
        background: none !important;
    }
    
    .fid-action-buttons::before {
        display: none !important;
    }
    
    .fid-icon-btn {
        font-size: 16px;
        padding: 8px 4px;
        text-align: center;
    }
    
    /* Status badge */
    .fid-table .fid-status-paid,
    .fid-table .fid-status-overdue,
    .fid-table .fid-status-pending {
        font-size: 10px;
        padding: 4px 8px;
        display: inline-block;
    }
    
    /* Mobile Logs Table - Card View */
    #fid-audit-logs-list {
        display: block;
    }
    
    #fid-audit-logs-list tr.fid-log-row {
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        margin: 12px 0;
        padding: 12px;
        display: block;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        width: 100%;
        box-sizing: border-box;
        border-left: 5px solid #667eea;
    }
    
    /* Strong alternating row colors for clear separation */
    #fid-audit-logs-list tr.fid-log-row:nth-child(odd) {
        background: #e8f1ff;
        border-left-color: #2196F3;
    }
    
    #fid-audit-logs-list tr.fid-log-row:nth-child(even) {
        background: #f5f5f5;
        border-left-color: #4caf50;
    }
    
    #fid-audit-logs-list tr.fid-log-row:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        border-color: #667eea;
        background: #f0f4ff;
    }
    
    #fid-audit-logs-list tr.fid-log-row td {
        display: block;
        width: 100%;
        padding: 10px 0;
        border: none;
        text-align: left;
        position: relative;
        padding-left: 35%;
        font-size: 13px;
        color: #333;
        box-sizing: border-box;
    }
    
    #fid-audit-logs-list tr.fid-log-row td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        font-weight: 700;
        color: #555;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    #fid-audit-logs-list tr.fid-log-row td:first-child {
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 12px;
        margin-bottom: 8px;
    }
    
    #fid-audit-logs-list tr.fid-log-row td:last-child {
        padding-bottom: 0;
    }
    
    /* Hide table header on mobile for logs */
    .fid-modal-large table thead {
        display: none;
    }
    
    /* Status with expired styling */
    #fid-audit-logs-list tr.fid-log-row span[style*="background"] {
        padding: 4px 8px;
        border-radius: 4px;
        color: #fff;
        font-size: 11px;
        font-weight: 600;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .fid-table tbody tr.fid-family-card > td:nth-child(1),
    .fid-table tbody tr.fid-family-card > td:nth-child(2),
    .fid-table tbody tr.fid-family-card > td:nth-child(3),
    .fid-table tbody tr.fid-family-card > td:nth-child(4) {
        width: auto;
        padding: 6px;
        display: inline-block;
        font-size: 12px;
    }
    
    .fid-table tbody tr.fid-family-card > td:nth-child(2) img {
        width: 45px;
        height: 45px;
    }
    
    .fid-table tbody tr.fid-family-card.expanded .fid-action-buttons {
        grid-template-columns: repeat(5, 1fr) !important;
        gap: 4px !important;
    }
    
    .fid-icon-btn {
        font-size: 14px;
        padding: 6px 2px;
    }
    
    .fid-table tbody tr.fid-family-card.expanded > td:nth-child(n+5) {
        font-size: 12px;
        padding-left: 40%;
    }
    
    /* Extra small screens - Logs cards */
    #fid-audit-logs-list tr.fid-log-row {
        margin: 8px 0;
        padding: 10px;
    }
    
    #fid-audit-logs-list tr.fid-log-row td {
        padding: 8px 0;
        padding-left: 30%;
        font-size: 12px;
    }
    
    #fid-audit-logs-list tr.fid-log-row td::before {
        font-size: 9px;
    }
}
    
    .fid-table td:first-child img,
    .fid-table td:first-child input {
        display: inline-block;
    }
    
    /* Checkbox styling */
    .fid-table input[type="checkbox"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
    }
    
    /* Family photo styling */
    .fid-table td:nth-child(2) img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #667eea;
    }
    
    /* Status badge styling */
    .fid-table .fid-status-paid,
    .fid-table .fid-status-overdue,
    .fid-table .fid-status-pending {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    /* Action buttons in card */
    .fid-action-buttons {
        grid-column: 1 / -1;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid #f0f0f0;
        justify-content: center;
        gap: 4px;
    }
    
    .fid-icon-btn {
        font-size: 18px;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .fid-table tbody tr {
        padding: 12px;
        margin-bottom: 10px;
        gap: 10px;
    }
    
    .fid-table td {
        font-size: 13px;
        padding-left: 45%;
    }
    
    .fid-table td::before {
        font-size: 11px;
        left: 0;
        right: 0;
        text-align: left;
    }
    
    .fid-action-buttons {
        gap: 2px;
    }
    
    .fid-icon-btn {
        font-size: 16px;
        padding: 4px 6px;
    }
    
    .fid-table td:nth-child(2) img {
        width: 50px;
        height: 50px;
    }
}
