/* Virtual Files Admin Styles - Modern Design */
.virtual-files-meta {
    margin: 0;
    padding: 0;
}

/* CodeMirror Editor Enhancements (Pro Feature) */
.virtual-files-content-wrapper {
    position: relative;
}

.CodeMirror {
    border: 2px solid #e2e8f0;
    border-radius: 0;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.CodeMirror-focused {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.CodeMirror-gutters {
    background-color: #f8fafc;
    border-right: 1px solid #e2e8f0;
    border-radius: 0;
}

.CodeMirror-linenumber {
    color: #64748b;
    font-size: 12px;
    padding: 0 10px;
    min-width: 35px;
    text-align: right;
}

.CodeMirror-selected {
    background-color: rgba(59, 130, 246, 0.1) !important;
}

.CodeMirror-cursor {
    border-left: 2px solid #3b82f6;
    border-right: none;
    width: 0;
}

.CodeMirror-activeline-background {
    background-color: #f1f5f9;
}

.CodeMirror-activeline-gutter {
    background-color: #f1f5f9;
}

/* Dark Theme (Monokai) Overrides */
.CodeMirror.cm-s-monokai {
    background-color: #272822;
    color: #f8f8f2;
}

.CodeMirror.cm-s-monokai .CodeMirror-gutters {
    background-color: #1e1f1c;
    border-right: 1px solid #3a3a2a;
}

.CodeMirror.cm-s-monokai .CodeMirror-linenumber {
    color: #75715e;
}

.CodeMirror.cm-s-monokai .CodeMirror-selected {
    background-color: rgba(73, 72, 62, 0.99) !important;
}

.CodeMirror.cm-s-monokai .CodeMirror-cursor {
    border-left: 2px solid #f8f8f0;
}

.CodeMirror.cm-s-monokai .CodeMirror-activeline-background {
    background-color: #3a3a2a;
}

.CodeMirror.cm-s-monokai .CodeMirror-activeline-gutter {
    background-color: #3a3a2a;
}

/* Theme Toggle Button */
#vf-theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 12px !important;
}

#vf-theme-toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

#vf-theme-toggle:active {
    transform: translateY(0);
}

#vf-theme-toggle .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Editor Status Bar */
#vf-editor-status {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0 0 8px 8px;
    padding: 8px 12px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    font-size: 11px;
    color: #475569;
    border-top: none;
    margin-top: 0 !important;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(8px);
}

#vf-editor-status span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

#vf-editor-status span::before {
    content: '•';
    color: #3b82f6;
    font-weight: bold;
}

#vf-editor-status span:first-child::before {
    content: '';
}

/* Pro Feature Badge */
.vf-pro-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.2);
}

/* Loading Animation for CodeMirror */
.vf-editor-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.vf-editor-loading::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #e2e8f0;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: vf-spin 1s linear infinite;
}

@keyframes vf-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.field-group {
    margin-bottom: 40px;
    position: relative;
}

.field-group:last-child {
    margin-bottom: 0;
}

.field-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1e293b;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.field-group .required-asterisk {
    color: #ef4444;
    margin-left: 6px;
    font-weight: 700;
    font-size: 18px;
}

.field-group input[type="text"],
.field-group select,
.field-group textarea {
    width: 100%;
    max-width: 500px;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.5;
    background-color: #fff;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.field-group input[type="text"]:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    outline: none;
    transform: translateY(-1px);
}

.field-group input[type="text"][readonly] {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #64748b;
    cursor: not-allowed;
    opacity: 0.9;
    border-color: #e2e8f0;
    box-shadow: none;
    transform: none;
}

.field-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    padding-right: 60px;
    appearance: none;
}

/* Input states and validation - Modern Design */
.field-group input.error,
.field-group select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15), 0 4px 6px rgba(239, 68, 68, 0.1);
    animation: shake 0.4s ease-in-out;
}

.field-group input:focus:not(:read-only),
.field-group select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
}

.field-group input:hover:not(:read-only):not(.error),
.field-group select:hover:not(.error) {
    border-color: #cbd5e1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Success state */
.field-group input.success,
.field-group select.success {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15), 0 4px 6px rgba(16, 185, 129, 0.1);
}

/* Error message styling - Modern Design */
.vf-filename-error {
    color: #dc2626;
    font-size: 14px;
    margin-top: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #fca5a5;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.3s ease-out;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(239, 68, 68, 0.1);
}

.vf-filename-error::before {
    content: "⚠️";
    font-size: 18px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(239, 68, 68, 0.3));
}

/* Compact error styling that doesn't disrupt layout */
.vf-filename-error.vf-filename-error-compact {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    padding: 8px 12px;
    font-size: 12px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideDownCompact 0.3s ease-out;
}

@keyframes slideDownCompact {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

/* Filename and extension layout - Modern Design */
.vf-filename-wrapper {
    display: flex;
    gap: 20px;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.vf-filename-wrapper input[type="text"] {
    flex: 2;
    min-width: 320px;
    max-width: 420px;
    margin-bottom: 0;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.vf-filename-wrapper input[type="text"]:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    outline: none;
    transform: translateY(-1px);
}

.vf-extension-dropdown {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    margin-bottom: 0;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    line-height: 1.5;
    background-color: #fff;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    padding-right: 60px;
    appearance: none;
}

.vf-extension-dropdown:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    outline: none;
    transform: translateY(-1px);
}

.vf-filename-preview {
    margin-top: 20px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', 'Courier New', Courier, monospace;
    font-size: 16px;
    color: #0369a1;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(14, 165, 233, 0.1);
    font-weight: 600;
}

.vf-filename-preview::before {
    content: "📄";
    margin-right: 14px;
    font-size: 20px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.vf-filename-preview strong {
    color: #0c4a6e;
    margin-right: 12px;
    font-weight: 700;
    font-size: 15px;
}

/* Pro feature styling for extension dropdown */
.vf-extension-dropdown option:disabled {
    color: #999;
    background: #f5f5f5;
    font-style: italic;
}

.vf-extension-dropdown option:not(:disabled):hover {
    background: #0073aa;
    color: #fff;
}

/* Responsive layout - Modern Design */
@media screen and (max-width: 782px) {
    .field-group {
        margin-bottom: 32px;
    }

    .field-group label {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .vf-filename-wrapper {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .vf-filename-wrapper input[type="text"],
    .vf-extension-dropdown {
        max-width: 100%;
        width: 100%;
        min-width: auto;
        padding: 14px 18px;
    }

    .vf-filename-preview {
        padding: 16px 20px;
        font-size: 15px;
        margin-top: 16px;
    }

    .vf-filename-preview::before {
        font-size: 18px;
        margin-right: 12px;
    }

    .field-group input[type="text"],
    .field-group select,
    .field-group textarea {
        max-width: 100%;
        padding: 14px 18px;
        font-size: 15px;
    }

    .field-group .description {
        font-size: 13px;
        margin-top: 10px;
        padding: 10px 0;
    }

    .vf-pro-features-info {
        padding: 24px;
        margin-top: 24px;
    }

    .vf-pro-features-info h4 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .vf-pro-features-info li {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .vf-pro-features-info .button {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
        justify-content: center;
    }
}

/* Tablet and small desktop optimizations - Modern Design */
@media screen and (max-width: 1024px) and (min-width: 783px) {
    .vf-filename-wrapper {
        flex-wrap: wrap;
    }

    .vf-filename-wrapper input[type="text"] {
        min-width: 280px;
        flex: 1;
    }

    .vf-extension-dropdown {
        min-width: 240px;
        flex: 0 0 auto;
    }

    .field-group {
        margin-bottom: 36px;
    }
}

/* Large desktop optimizations */
@media screen and (min-width: 1400px) {
    .field-group input[type="text"],
    .field-group select,
    .field-group textarea {
        max-width: 600px;
    }

    .vf-filename-wrapper input[type="text"] {
        max-width: 480px;
    }

    .vf-extension-dropdown {
        max-width: 360px;
    }
}

.field-group input[type="text"][readonly] {
    background-color: #f9f9f9;
    color: #666;
}

.field-group .description {
    color: #64748b;
    font-size: 14px;
    margin-top: 12px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid #f1f5f9;
}

.field-group .description::before {
    content: "💡";
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.field-group .description.has-icon::before {
    content: "✨";
}

/* Improve status select styling */
.field-group select[vf-status] {
    max-width: 280px;
}

/* Pro features styling - Modern Design */
.vf-pro-features-info {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 16px;
    padding: 32px;
    margin-top: 32px;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.15);
    position: relative;
    overflow: hidden;
}

.vf-pro-features-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #d97706, #f59e0b);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.vf-pro-features-info h4 {
    margin: 0 0 20px 0;
    color: #92400e;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.vf-pro-features-info h4::before {
    content: "⭐";
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
}

.vf-pro-features-info ul {
    margin: 0 0 24px 0;
    padding-left: 0;
    list-style: none;
}

.vf-pro-features-info li {
    margin-bottom: 16px;
    font-size: 15px;
    color: #78350f;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.vf-pro-features-info li::before {
    content: "✨";
    font-size: 18px;
    flex-shrink: 0;
}

.vf-pro-features-info .button {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 8px 16px rgba(245, 158, 11, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vf-pro-features-info .button:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.4);
    color: #ffffff;
}

.virtual-files-editor-wrapper {
    margin: 0;
    width: 100%;
}

.virtual-files-editor-wrapper textarea {
    width: 100%;
    min-height: 400px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    line-height: 1.4;
    border: 1px solid #ddd;
    background-color: #fff;
}

.vf-pro-upsell {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    padding: 15px;
    margin-top: 15px;
    border-radius: 4px;
}

.vf-pro-upsell h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.vf-pro-upsell ul {
    margin: 0 0 15px 0;
    padding-left: 20px;
}

.vf-pro-upsell ul li {
    margin-bottom: 5px;
}

.vf-pro-upsell .button {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
    text-decoration: none;
}

.vf-pro-upsell .button:hover {
    background: #005a87;
    border-color: #005a87;
}

/* Status indicators */
.vf-status {
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.vf-status-active {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.vf-status-inactive {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Post list table styling */
.wp-list-table .column-vf_filename {
    width: 20%;
}

.wp-list-table .column-vf_status {
    width: 10%;
}

.wp-list-table .column-vf_mime_type {
    width: 25%;
}

.wp-list-table .column-vf_access_count {
    width: 10%;
    text-align: center;
}

.wp-list-table .column-vf_modified {
    width: 15%;
}

/* Settings page styles */
.virtual-files-settings .form-table th {
    width: 200px;
}

.virtual-files-settings .description {
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

/* Notice styles */
.notice.virtual-files-notice {
    border-left-color: #0073aa;
}

.notice.virtual-files-notice .vf-notice-title {
    font-weight: 600;
}

/* Pro feature badges */
.vf-pro-badge {
    background: #ff6f00;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 5px;
    vertical-align: middle;
}

/* File type indicators */
.vf-file-type {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 5px;
}

.vf-file-type.txt {
    background: #e3f2fd;
    color: #1565c0;
}

.vf-file-type.md {
    background: #f3e5f5;
    color: #7b1fa2;
}

.vf-file-type.json {
    background: #e8f5e8;
    color: #2e7d32;
}

.vf-file-type.xml {
    background: #fff3e0;
    color: #ef6c00;
}

.vf-file-type.csv {
    background: #fce4ec;
    color: #c2185b;
}

.vf-file-type.yml,
.vf-file-type.yaml {
    background: #f1f8e9;
    color: #689f38;
}

/* Loading spinner */
.vf-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #0073aa;
    border-radius: 50%;
    animation: vf-spin 1s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes vf-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media screen and (max-width: 782px) {
    .virtual-files-meta .field-group input[type="text"],
    .virtual-files-meta .field-group select {
        max-width: 100%;
    }

    .wp-list-table .column-vf_access_count {
        text-align: left;
    }
}

/* CodeMirror integration */
.CodeMirror {
    border: 1px solid #ddd;
    height: 400px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 13px;
    line-height: 1.4;
}

.CodeMirror-gutters {
    background-color: #f7f7f7;
    border-right: 1px solid #ddd;
}

.CodeMirror-linenumber {
    color: #999;
}

/* Dark theme support for CodeMirror */
.cm-s-default .cm-header {
    color: #006;
}

.cm-s-default .cm-strong {
    font-weight: bold;
}

.cm-s-default .cm-em {
    font-style: italic;
}

.cm-s-default .cm-string {
    color: #690;
}

.cm-s-default .cm-number {
    color: #07a;
}

.cm-s-default .cm-atom {
    color: #219;
}

.cm-s-default .cm-keyword {
    color: #07a;
    font-weight: bold;
}

.cm-s-default .cm-variable {
    color: #000;
}

.cm-s-default .cm-variable-2 {
    color: #05a;
}

.cm-s-default .cm-variable-3 {
    color: #085;
}

.cm-s-default .cm-property {
    color: #05a;
}

.cm-s-default .cm-operator {
    color: #000;
}

.cm-s-default .cm-comment {
    color: #998;
    font-style: italic;
}

.cm-s-default .cm-string-2 {
    color: #690;
}

.cm-s-default .cm-meta {
    color: #999;
}

.cm-s-default .cm-qualifier {
    color: #690;
}

.cm-s-default .cm-builtin {
    color: #07a;
}

.cm-s-default .cm-bracket {
    color: #997;
}

.cm-s-default .cm-tag {
    color: #170;
}

.cm-s-default .cm-attribute {
    color: #00c;
}

.cm-s-default .cm-quote {
    color: #090;
}

.cm-s-default .cm-hr {
    color: #999;
}

.cm-s-default .cm-link {
    color: #00c;
}

/* Virtual Files List - Accessibility Indicators */
.vf-accessibility-indicator {
    font-size: 18px;
    display: inline-block;
    text-align: center;
    cursor: help;
    line-height: 1;
}

.vf-accessibility-indicator.vf-accessible {
    color: #16a34a;
}

.vf-accessibility-indicator.vf-inaccessible {
    color: #dc2626;
}

/* Compact column width for accessibility */
.wp-list-table .column-vf_accessibility {
    width: 60px;
    text-align: center;
}

/* Compact width for Views column */
.wp-list-table .column-vf_access_count {
    width: 80px;
    text-align: center;
}

/* Ensure Views column is tight */
.wp-list-table .column-vf_access_count .column-num {
    text-align: center;
}

/* Set width for MIME Type column */
.wp-list-table .column-vf_mime_type {
    width: 200px;
}

/* Set width for Filename column */
.wp-list-table .column-vf_filename {
    width: 200px;
}

/* Compact width for Status column */
.wp-list-table .column-vf_status {
    width: 100px;
    text-align: center;
}