:root {
    --ufh-mint-green: #d1e5df;
    --ufh-deep-green: #026f4f;
    --ufh-soft-gray: #f7f7f7;
    --ufh-white: #ffffff;
    --ufh-red: #dc3232;
    --ufh-yellow: #f5c130;
    --ufh-light-gray: #e5e5e5;
    --ufh-dark-gray: #666;
    --ufh-border-radius: 5px;
}

.ufh-submission-form-wrapper {
    background-color: var(--ufh-white);
    padding: 30px;
    border: 1px solid var(--ufh-mint-green);
    border-radius: var(--ufh-border-radius);
    max-width: 1400px;
    margin: 20px auto;
    font-family: inherit;
    color: #333;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.ufh-submission-form-wrapper h2,
.ufh-submission-form-wrapper h3 { color: var(--ufh-deep-green); margin-top: 0; margin-bottom: 20px; font-weight: 600; }

.ufh-download-section { margin-bottom: 30px; padding-bottom: 25px; border-bottom: 1px dashed var(--ufh-mint-green); }
.ufh-download-section p { margin-bottom: 15px; }
.ufh-email-prompt label { display: block; margin-bottom: 8px; font-weight: bold; color: #555; }
.ufh-email-prompt input[type="email"] { padding: 10px 12px; border: 1px solid var(--ufh-mint-green); border-radius: 4px; width: 100%; max-width: 600px; box-sizing: border-box; margin-bottom: 15px; transition: border-color 0.3s ease; }
.ufh-email-prompt input[type="email"]:focus { border-color: var(--ufh-deep-green); outline: none; box-shadow: 0 0 0 2px rgba(2, 111, 79, 0.2); }
.ufh-download-button { display: inline-block; background-color: var(--ufh-deep-green); color: var(--ufh-white); padding: 12px 25px; border: none; border-radius: 4px; cursor: pointer; font-size: 1em; text-decoration: none; transition: background-color 0.3s ease, transform 0.1s ease; margin-right: 10px; margin-bottom: 5px; }
.ufh-download-button:hover, .ufh-download-button:focus { background-color: var(--ufh-mint-green); color: var(--ufh-deep-green); outline: none; }
.ufh-download-button:active { transform: translateY(1px); }
.ufh-download-button.is-loading { cursor: wait; opacity: 0.7; }
.ufh-download-button.is-loading::after { content: ' ...'; }
.ufh-download-status { margin-top: 15px; padding: 10px 15px; border-radius: 4px; font-size: 0.9em; display: none; clear: both; }
.ufh-download-status.success { background-color: var(--ufh-mint-green); color: var(--ufh-deep-green); border: 1px solid var(--ufh-deep-green); }
.ufh-download-status.error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.ufh-download-status .ufh-countdown-timer { font-weight: bold; }

.ufh-upload-section { margin-bottom: 30px; }
.ufh-upload-section p { margin-bottom: 25px; }

.ufh-dropzone { border: 2px dashed var(--ufh-mint-green); border-radius: var(--ufh-border-radius); padding: 20px; background-color: var(--ufh-soft-gray); cursor: pointer; transition: background-color 0.3s ease, border-color 0.3s ease, padding 0.3s ease; position: relative; min-height: 150px; display: flex; flex-direction: column; justify-content: center; align-items: center; box-sizing: border-box; }
.ufh-dropzone.is-dragover { background-color: var(--ufh-mint-green); border-color: var(--ufh-deep-green); }
.ufh-dropzone-initial-text { text-align: center; color: #666; width: 100%; transition: opacity 0.3s ease, height 0.3s ease, margin 0.3s ease; }
.ufh-dropzone-text { font-size: 1.1em; margin-bottom: 10px; }
.ufh-browse-link { color: var(--ufh-deep-green); text-decoration: underline; font-weight: bold; }
.ufh-dropzone.has-files .ufh-dropzone-initial-text { opacity: 0; height: 0; overflow: hidden; pointer-events: none; margin: 0; }
.ufh-dropzone.has-files { justify-content: flex-start; align-items: stretch; padding: 20px; cursor: default; background-color: var(--ufh-white); min-height: 0; }
.ufh-file-input { display: none; }

#ufh-dropzone-area .ufh-file-count-badge {
    order: -1;
    align-self: flex-start;
    background-color: var(--ufh-mint-green);
    color: var(--ufh-deep-green);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85em;
    font-weight: bold;
    margin-bottom: 15px;
    display: none;
}
.ufh-dropzone.has-files #ufh-dropzone-area .ufh-file-count-badge {
    display: inline-block;
}

#ufh-dropzone-area .ufh-preview-list.ufh-preview-grid {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    order: 0;
}

#ufh-dropzone-area .ufh-preview-item {
    background-color: var(--ufh-soft-gray);
    border: 1px solid var(--ufh-mint-green);
    border-radius: 4px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 0.85em;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    min-height: 80px;
}
#ufh-dropzone-area .ufh-preview-list li:last-child { margin-bottom: 0; }
#ufh-dropzone-area .ufh-file-info { flex-grow: 1; margin-right: 0; margin-bottom: 5px; overflow: hidden; width: 100%; }
#ufh-dropzone-area .ufh-file-name { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: bold; margin-bottom: 3px; }
#ufh-dropzone-area .ufh-file-size { color: #777; font-size: 0.9em; }
#ufh-dropzone-area .ufh-remove-file { position: absolute; top: 5px; right: 5px; background: rgba(255, 255, 255, 0.7); border: none; border-radius: 50%; color: var(--ufh-red); cursor: pointer; font-size: 1.2em; width: 22px; height: 22px; line-height: 20px; text-align: center; padding: 0; transition: background-color 0.2s ease, color 0.2s ease; }
#ufh-dropzone-area .ufh-remove-file:hover { background-color: rgba(255, 255, 255, 1); color: darkred; }

#ufh-dropzone-area .ufh-progress-bar-wrapper { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background-color: rgba(247, 247, 247, 0.8); z-index: 1; display: flex; align-items: center; justify-content: center; transition: opacity 0.3s ease; opacity: 0; pointer-events: none; border-radius: 4px; }
#ufh-dropzone-area .ufh-preview-item.is-uploading .ufh-progress-bar-wrapper { opacity: 1; pointer-events: all; }
#ufh-dropzone-area .ufh-progress-bar { position: absolute; top: 0; left: 0; height: 100%; background-color: var(--ufh-red); width: 0%; transition: width 0.3s linear, background-color 0.5s ease; z-index: -1; border-radius: 4px;}
#ufh-dropzone-area .ufh-progress-bar.is-0-50 { background-color: var(--ufh-red); }
#ufh-dropzone-area .ufh-progress-bar.is-51-80 { background-color: var(--ufh-yellow); }
#ufh-dropzone-area .ufh-progress-bar.is-81-99 { background-color: var(--ufh-mint-green); }
#ufh-dropzone-area .ufh-progress-bar.is-100 { background-color: var(--ufh-deep-green); }
#ufh-dropzone-area .ufh-progress-text { position: relative; z-index: 2; color: var(--ufh-white); font-weight: bold; text-shadow: 1px 1px 1px rgba(0,0,0,0.3); font-size: 0.9em; }
#ufh-dropzone-area .ufh-progress-bar.is-51-80 + .ufh-progress-text { color: #333; text-shadow: none; }
#ufh-dropzone-area .ufh-progress-bar.is-81-99 + .ufh-progress-text { color: var(--ufh-deep-green); text-shadow: none; }

#ufh-dropzone-area .ufh-submit-button-wrapper {
    order: 1;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    position: relative;
    visibility: visible;
    opacity: 1;
    height: auto;
    overflow: visible;
    z-index: 1;
}

#ufh-dropzone-area .ufh-submit-button-wrapper .ufh-submit-button {
    display: inline-block;
    width: auto;
    max-width: 350px;
    background-color: var(--ufh-deep-green);
    color: var(--ufh-white);
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.05em;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.1s ease, opacity 0.3s ease;
    opacity: 1;
    visibility: visible;
}

#ufh-dropzone-area .ufh-submit-button-wrapper .ufh-submit-button:hover,
#ufh-dropzone-area .ufh-submit-button-wrapper .ufh-submit-button:focus {
     background-color: var(--ufh-mint-green);
     color: var(--ufh-deep-green);
     outline: none;
}
#ufh-dropzone-area .ufh-submit-button-wrapper .ufh-submit-button:active {
     transform: translateY(1px);
}
#ufh-dropzone-area .ufh-submit-button-wrapper .ufh-submit-button.is-loading {
     cursor: wait;
     opacity: 0.7;
}
#ufh-dropzone-area .ufh-submit-button-wrapper .ufh-submit-button.is-loading::after {
     content: ' ...';
}

.ufh-submission-status { margin-top: 20px; padding: 15px; border-radius: 4px; text-align: center; display: none; }
.ufh-submission-status.error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

.ufh-success-message { padding: 30px; background-color: var(--ufh-mint-green); border: 1px solid var(--ufh-deep-green); border-radius: var(--ufh-border-radius); text-align: center; margin-top: 20px; display: none; }
.ufh-success-message h3 { color: var(--ufh-deep-green); margin-top: 0; margin-bottom: 15px; }
.ufh-tracking-code-display { font-size: 2.2em; font-weight: bold; color: var(--ufh-deep-green); margin: 20px 0; opacity: 0; transform: scale(0.5) translateY(-20px); transition: opacity 0.5s ease-out, transform 0.5s ease-out; }
.ufh-tracking-code-display.is-visible { opacity: 1; transform: scale(1) translateY(0); }
.ufh-tracking-code-display.typewriter { font-family: monospace; }
.ufh-success-actions { margin-top: 25px; }
.ufh-success-button { display: inline-block; background-color: var(--ufh-deep-green); color: var(--ufh-white); padding: 10px 20px; border: none; border-radius: 4px; cursor: pointer; font-size: 0.95em; text-decoration: none; transition: background-color 0.3s ease, transform 0.1s ease; margin: 5px 10px; }
.ufh-success-button:hover, .ufh-success-button:focus { background-color: var(--ufh-mint-green); color: var(--ufh-deep-green); outline: none; }
.ufh-success-button:active { transform: translateY(1px); }
.ufh-copy-feedback { display: inline-block; margin-left: 10px; font-size: 0.9em; color: var(--ufh-deep-green); opacity: 0; transition: opacity 0.3s ease; }
.ufh-copy-feedback.is-visible { opacity: 1; }

.ufh-status-form-wrapper { 
    background-color: #f9f9f9; 
    padding: 20px; 
    border: 1px solid #e5e5e5; 
    border-radius: 4px; 
    max-width: 1000px; 
    margin: 20px auto;
    font-family: inherit;
    position: relative;
}
.ufh-status-form-wrapper h3 { margin-top: 0; margin-bottom: 15px; color: #026f4f; font-family: inherit; }
.ufh-status-form-field { margin-bottom: 15px; }
.ufh-status-form-field label { display: block; margin-bottom: 5px; font-weight: bold; font-family: inherit; }

.ufh-input-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.ufh-status-form-field input[type="text"] { 
    width: 100%; 
    padding: 8px 40px 8px 12px; 
    border: 1px solid #ccc; 
    border-radius: 3px; 
    box-sizing: border-box; 
    font-family: inherit;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ufh-status-form-field input[type="text"]:focus {
    border-color: var(--ufh-deep-green);
    outline: none;
    box-shadow: 0 0 0 2px rgba(2, 111, 79, 0.2);
}

.ufh-input-validation {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--ufh-deep-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-50%) scale(0.5);
    transition: all 0.3s ease;
}

.ufh-input-validation.show {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.ufh-check-icon {
    width: 12px;
    height: 12px;
    color: white;
    stroke-width: 3;
}

.ufh-input-validation svg path {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    animation: ufh-check-draw 0.5s ease-out 0.2s forwards;
}

@keyframes ufh-check-draw {
    to {
        stroke-dashoffset: 0;
    }
}
.ufh-status-form-field p.description { font-size: 0.9em; color: #666; margin-top: 5px; font-family: inherit; }
.ufh-button { 
    display: inline-block; 
    background-color: #026f4f; 
    color: white; 
    padding: 12px 20px; 
    border: none; 
    border-radius: 4px; 
    cursor: pointer; 
    font-family: inherit;
    font-size: 1em;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.1s ease;
    text-align: center;
}
.ufh-button:hover { 
    background-color: #d1e5df; 
    color: #026f4f; 
    transform: translateY(-1px);
}
.ufh-button:active {
    transform: translateY(0);
}
.ufh-button:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    transform: none;
}

.ufh-status-error {
    margin-bottom: 20px;
    padding: 12px 15px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    font-size: 0.95em;
    font-family: inherit;
    display: none;
}

.ufh-status-error .ufh-countdown-prompt {
    font-weight: normal;
    margin-left: 10px;
}

.ufh-status-error .ufh-countdown-timer {
    font-weight: bold;
}

.ufh-status-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(249, 249, 249, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    z-index: 1000;
}

.ufh-status-loading-spinner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.ufh-spinner-ring {
    width: 50px;
    height: 50px;
    border: 4px solid var(--ufh-light-gray);
    border-top: 4px solid var(--ufh-deep-green);
    border-radius: 50%;
    animation: ufh-spin 1s linear infinite;
}

@keyframes ufh-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ufh-loading-text {
    color: var(--ufh-deep-green);
    font-size: 0.95em;
    font-weight: 500;
    font-family: inherit;
}

.ufh-status-details {
    margin-top: 30px;
    background: var(--ufh-white);
    border: 1px solid var(--ufh-light-gray);
    border-radius: var(--ufh-border-radius);
    overflow: hidden;
    font-family: inherit;
}

.ufh-status-header {
    background: var(--ufh-mint-green);
    padding: 20px;
    border-bottom: 1px solid var(--ufh-light-gray);
}

.ufh-header-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.ufh-tracking-display,
.ufh-email-display,
.ufh-date-display {
    display: flex;
    flex-direction: column;
}

.ufh-label {
    font-size: 0.85em;
    color: var(--ufh-deep-green);
    font-weight: bold;
    margin-bottom: 5px;
}

.ufh-tracking-number,
.ufh-user-email,
.ufh-submission-date {
    font-size: 1em;
    color: #333;
    word-break: break-all;
}

.ufh-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--ufh-light-gray);
}

.ufh-info-card {
    background: var(--ufh-soft-gray);
    padding: 20px;
    border-radius: var(--ufh-border-radius);
    text-align: center;
    border: 1px solid var(--ufh-light-gray);
    transition: transform 0.2s ease;
}

.ufh-info-card:hover {
    transform: translateY(-2px);
}

.ufh-card-value {
    font-size: 1.4em;
    font-weight: bold;
    color: var(--ufh-deep-green);
    margin-bottom: 5px;
    font-family: inherit;
}

#ufh-time-estimate {
    font-size: 0.9em !important;
}

#ufh-current-status {
    font-size: 0.9em !important;
}

.ufh-card-label {
    font-size: 0.9em;
    color: var(--ufh-dark-gray);
    font-family: inherit;
}

.ufh-timeline-section {
    padding: 20px;
    border-bottom: 1px solid var(--ufh-light-gray);
}

.ufh-timeline-section h4 {
    margin: 0 0 20px 0;
    color: var(--ufh-deep-green);
    font-size: 1.2em;
    font-family: inherit;
}

.ufh-timeline {
    position: relative;
    clear: both;
}

.ufh-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--ufh-light-gray);
    z-index: 1;
}

.ufh-timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
    clear: both;
}

.ufh-timeline-item:last-child {
    margin-bottom: 0;
}

.ufh-timeline-marker {
    position: absolute;
    left: 6px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--ufh-light-gray);
    border: 3px solid var(--ufh-light-gray);
    transition: all 0.3s ease;
    z-index: 2;
}

.ufh-timeline-item.completed .ufh-timeline-marker {
    background: var(--ufh-deep-green) !important;
    border-color: var(--ufh-deep-green) !important;
}

.ufh-timeline-item.active .ufh-timeline-marker {
    background: var(--ufh-deep-green) !important;
    border-color: var(--ufh-deep-green) !important;
    box-shadow: 0 0 0 4px rgba(2, 111, 79, 0.2);
    animation: timeline-pulse 2s infinite;
    transform: scale(1.1);
}

.ufh-timeline-item.active .ufh-timeline-title {
    color: var(--ufh-deep-green);
    font-weight: bold;
}

.ufh-timeline-item.active .ufh-timeline-desc {
    color: #333;
    font-weight: 500;
}

@keyframes timeline-pulse {
    0% { 
        box-shadow: 0 0 0 4px rgba(2, 111, 79, 0.2);
        transform: scale(1.1);
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(2, 111, 79, 0.1);
        transform: scale(1.15);
    }
    100% { 
        box-shadow: 0 0 0 4px rgba(2, 111, 79, 0.2);
        transform: scale(1.1);
    }
}

.ufh-timeline-title {
    font-weight: bold;
    color: var(--ufh-deep-green);
    margin-bottom: 5px;
    font-family: inherit;
    font-size: 1em;
}

.ufh-timeline-desc {
    color: var(--ufh-dark-gray);
    font-size: 0.9em;
    margin-bottom: 5px;
    font-family: inherit;
    line-height: 1.4;
}

.ufh-timeline-time {
    font-size: 0.8em;
    color: #999;
    font-style: italic;
    font-family: inherit;
}

.ufh-file-details-section {
    padding: 20px;
    border-bottom: 1px solid var(--ufh-light-gray);
}

.ufh-file-details-section h4 {
    margin: 0 0 15px 0;
    color: var(--ufh-deep-green);
    font-size: 1.2em;
    font-family: inherit;
}

.ufh-file-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.ufh-file-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background: var(--ufh-soft-gray);
    border-radius: 4px;
    border: 1px solid var(--ufh-light-gray);
    text-align: center;
}

.ufh-file-name {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    font-size: 0.85em;
    word-break: break-word;
    font-family: inherit;
}

.ufh-file-size {
    font-size: 0.75em;
    color: var(--ufh-dark-gray);
    font-family: inherit;
}

.ufh-actions-section {
    padding: 20px;
    text-align: center;
}

.ufh-action-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ufh-deep-green);
    color: var(--ufh-white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
    font-family: inherit;
}

.ufh-action-button:hover {
    background: var(--ufh-mint-green);
    color: var(--ufh-deep-green);
}

@media (max-width: 900px) {
    #ufh-dropzone-area .ufh-preview-list.ufh-preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 10px;
    }
    
    .ufh-header-info {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .ufh-info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .ufh-file-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .ufh-submission-form-wrapper,
    .ufh-status-form-wrapper { 
        padding: 20px; 
        max-width: 95%;
    }
    
    .ufh-email-prompt input[type="email"] { max-width: 90%; }
    .ufh-dropzone { min-height: 120px; }
    
    #ufh-dropzone-area .ufh-preview-list.ufh-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ufh-info-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .ufh-file-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .ufh-timeline::before {
        left: 10px;
    }
    
    .ufh-timeline-item {
        padding-left: 40px;
    }
    
    .ufh-timeline-marker {
        left: 1px;
    }
}

@media (max-width: 600px) {
    .ufh-submission-form-wrapper,
    .ufh-status-form-wrapper { 
        padding: 15px; 
        margin: 10px auto;
    }
    
    .ufh-status-form-field input[type="text"] {
        padding: 10px 40px 10px 12px;
        font-size: 16px;
    }
    
    .ufh-input-validation {
        right: 12px;
        width: 22px;
        height: 22px;
    }
    
    .ufh-check-icon {
        width: 14px;
        height: 14px;
    }
    
    .ufh-email-prompt input[type="email"] { max-width: 100%; }
    .ufh-dropzone { padding: 15px; min-height: 100px; }
    .ufh-dropzone.has-files { padding: 10px; }
    
    #ufh-dropzone-area .ufh-preview-list.ufh-preview-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 8px;
    }
    
    #ufh-dropzone-area .ufh-preview-item { font-size: 0.8em; min-height: 70px; }
    #ufh-dropzone-area .ufh-remove-file { font-size: 1.1em; width: 20px; height: 20px; line-height: 18px; }
    #ufh-dropzone-area .ufh-submit-button-wrapper { margin-top: 10px; }
    #ufh-dropzone-area .ufh-submit-button-wrapper .ufh-submit-button { max-width: 95%; padding: 12px 20px; font-size: 1em; }
    
    .ufh-success-actions .ufh-success-button { display: block; width: 90%; margin: 10px auto; }
    .ufh-tracking-code-display { font-size: 1.8em; }
    
    .ufh-timeline-section,
    .ufh-file-details-section,
    .ufh-actions-section {
        padding: 15px;
    }
    
    .ufh-card-value {
        font-size: 1.2em;
    }
    
    .ufh-file-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}