* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: linear-gradient(135deg, #0b5ed7, #3a8bfd);
    min-height: 100vh;
    color: #222;
}

body.embed-page {
    background: transparent;
    min-height: 100%;
}

main {
    width: 100%;
}

/* ===== Layout ===== */

.wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100%;
    padding: 24px 16px 16px;
}

body.embed-page .wrapper {
    min-height: auto;
    padding: 0;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 25px;
    width: 420px;
    max-width: calc(100vw - 32px);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease;
    overflow: hidden;
}

body.embed-page .card {
    width: 100%;
    max-width: 100%;
    padding: 22px 20px;
    border-radius: 20px;
    box-shadow: none;
    backdrop-filter: none;
    background: #ffffff;
}

body.embed-page:not([data-upload-state="initial"]) .upload-form-block {
    display: none;
}

body.embed-page .result-box {
    margin-top: 0;
}

body.embed-page .result-summary {
    margin-bottom: 10px;
}

body.embed-page #drop-area {
    padding: 18px 16px;
    border-radius: 16px;
}

body.embed-page #drop-area p {
    margin: 6px 0 0;
    font-size: 14px;
}

body.embed-page .icon {
    font-size: 30px;
}

body.embed-ready-page .card,
body.embed-expired-page .card,
body.embed-password-page .card,
body.embed-uploading-page .card {
    border: 1px solid #d7e6fb;
}

.embed-preview-summary {
    margin-top: 0;
}

.embed-preview-files {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 2px;
}

.embed-file-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.embed-preview-card {
    padding: 10px;
    border-radius: 14px;
}

body.embed-page .embed-preview-card .preview-image,
body.embed-page .embed-preview-card .preview-media,
body.embed-page .embed-preview-card .preview-pdf {
    max-height: 220px;
    border-radius: 10px;
}

body.embed-page .embed-preview-card .preview-pdf {
    min-height: 220px;
}

body.embed-page .embed-preview-card .archive-preview {
    padding: 6px 2px 0;
}

body.embed-page .embed-file-block .file-text {
    font-size: 11px;
    color: #5b6472;
    line-height: 1.35;
    font-weight: 400;
}

/* ===== Typography ===== */

h1 {
    margin: 0;
    color: #0b5ed7;
    font-size: 30px;
    line-height: 1.2;
}

h2,
h3 {
    margin-top: 0;
}

.subtitle {
    margin: 10px 0 20px;
    color: #666;
    line-height: 1.45;
}

/* ===== Language switcher ===== */

.lang-switcher {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 14px;
}

.lang-switcher a {
    text-decoration: none;
    color: #0b5ed7;
    background: #eef4ff;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.2s;
}

.lang-switcher a:hover {
    background: #dce9ff;
}

.lang-switcher a.active {
    background: #0b5ed7;
    color: white;
}

/* ===== Drop area ===== */

#drop-area {
    border: 2px dashed #0b5ed7;
    border-radius: 20px;
    padding: 30px;
    transition: 0.3s;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
}

#drop-area:hover {
    background: #f0f6ff;
    transform: translateY(-3px);
}

#drop-area.hover {
    background: #e7f1ff;
    transform: scale(1.02);
}

#drop-area p {
    margin: 10px 0 8px;
}

#drop-area span {
    display: inline-block;
    color: #666;
    font-size: 14px;
    margin-bottom: 2px;
}

.icon {
    font-size: 40px;
}

/* ===== Buttons ===== */

button {
    margin-top: 10px;
    padding: 10px 15px;
    border: none;
    background: #0b5ed7;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
    font: inherit;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

button:disabled {
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.7;
}

.upload-btn {
    width: 100%;
    margin-top: 15px;
    display: inline-block;
    text-decoration: none;
    box-sizing: border-box;
    text-align: center;
    padding: 10px 15px;
    background: #0b5ed7;
    color: white;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    font: inherit;
}

.upload-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.copy-btn {
    width: 100%;
    margin-top: 8px;
    background: #198754;
}

.copy-btn:hover {
    background: #157347;
}

.delete-btn {
    flex: 0 0 auto;
    margin-top: 0;
    padding: 8px 10px;
}

.danger-btn {
    margin-top: 0;
    border: none;
    background: #dc3545;
    color: white;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.danger-btn:hover {
    background: #bb2d3b;
}

.admin-copy-btn {
    margin-top: 0;
    padding: 8px 10px;
    border-radius: 8px;
    background: #198754;
}

.admin-copy-btn:hover {
    background: #157347;
}

.admin-small-btn {
    margin-top: 0;
    padding: 8px 10px;
    border-radius: 8px;
}

/* ===== Inputs ===== */

input,
select {
    font: inherit;
}

.password-wrapper {
    position: relative;
    width: 100%;
    margin-top: 15px;
}

.password-wrapper input {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
    height: 42px;
    box-sizing: border-box;
    appearance: none;
    background: white;
}

.password-wrapper input[type="text"],
.password-wrapper input[type="password"] {
    font-family: inherit;
}

.toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.6;
    user-select: none;
}

.toggle:hover {
    opacity: 1;
}

/* ===== Select rows ===== */

.options-row {
    margin-top: 12px;
    text-align: left;
}

.options-row label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: #555;
}

.options-row select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: white;
}

.options-row input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: white;
}

.option-toggle {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 12px;
    padding: 12px;
    border-radius: 12px;
    background: #f7f9fc;
    border: 1px solid #e2e9f5;
    text-align: left;
    cursor: pointer;
}

.option-toggle input {
    margin: 3px 0 0;
    flex: 0 0 auto;
}

.option-toggle span {
    display: block;
}

.option-toggle strong {
    display: block;
    color: #243447;
    font-size: 14px;
}

.option-toggle small {
    display: block;
    margin-top: 4px;
    color: #5b6472;
    line-height: 1.4;
}

/* ===== Progress ===== */

#progress {
    width: 100%;
    margin-top: 15px;
    display: none;
}

#progress.is-visible {
    display: block;
}

#progress:empty {
    display: none;
}

/* ===== Files list ===== */

.files-list {
    margin-top: 10px;
    width: 100%;
}

.file-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #f7f9fc;
    padding: 10px 12px;
    border-radius: 10px;
    margin-top: 8px;
    transition: 0.2s;
    width: 100%;
    overflow: hidden;
}

.file-card:hover {
    transform: translateY(-2px);
    background: #eef4ff;
}

.dashboard-upload-card {
    align-items: flex-start;
}

.dashboard-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 180px;
    flex: 0 0 auto;
}

.file-name {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

.file-icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.file-icon::before {
    display: block;
    font-size: 20px;
    line-height: 22px;
}

.file-icon-file::before {
    content: "\1F4C4";
}

.file-icon-image::before {
    content: "\1F5BC";
}

.file-icon-video::before {
    content: "\1F3A5";
}

.file-icon-audio::before {
    content: "\1F3A7";
}

.file-icon-pdf::before {
    content: "\1F4D5";
}

.file-icon-archive::before {
    content: "\1F4E6";
}

.file-icon-word::before {
    content: "\1F4D8";
}

.file-icon-excel::before {
    content: "\1F4D7";
}

.file-icon-onec::before {
    content: "\1F4C1";
}

.file-text {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
    line-height: 1.35;
    text-align: left;
}

/* ===== Result ===== */

.result-box {
    margin-top: 15px;
}

.result-box input {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.result-summary {
    margin-bottom: 12px;
    padding: 16px;
    border-radius: 18px;
    background:
        radial-gradient(circle at top right, rgba(58, 139, 253, 0.16), transparent 34%),
        linear-gradient(180deg, #f9fbff 0%, #eef4ff 100%);
    border: 1px solid #d7e6fb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
    text-align: left;
}

.result-summary-title {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #243447;
    letter-spacing: -0.02em;
}

.account-cta {
    margin-top: 18px;
    padding: 16px;
    border: 1px solid #d7e6fb;
    border-radius: 14px;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef5ff 100%);
    text-align: left;
}

.account-cta .subtitle {
    margin: 8px 0 0;
}

.account-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.account-cta-btn,
.pricing-secondary-btn,
.dashboard-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.trial-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #e9f2ff;
    color: #0b5ed7;
    font-size: 12px;
    font-weight: 700;
}

.auth-switch {
    margin-top: 16px;
}

.dashboard-filter-form {
    margin-top: 18px;
}

.plan-compare {
    display: grid;
    gap: 8px;
}

.plan-compare-row {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 8px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(216, 229, 247, 0.95);
}

.plan-compare-head {
    font-weight: 700;
    color: #243447;
}

.summary-grid {
    display: grid;
    gap: 10px;
}

.result-summary .summary-grid {
    grid-template-columns: 1fr;
}

.ready-summary .summary-grid {
    grid-template-columns: 1fr;
}

.summary-item {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(216, 229, 247, 0.95);
    box-shadow: 0 6px 16px rgba(30, 76, 146, 0.05);
}

.summary-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
}

.summary-label {
    display: inline-block;
    flex: 0 0 auto;
    font-size: 11px;
    color: #5b6472;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.summary-value {
    display: inline-block;
    flex: 1 1 auto;
    font-size: 15px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #243447;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: right;
}

.summary-note {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    color: #5b6472;
    line-height: 1.35;
    text-align: left;
}

.summary-highlight {
    font-weight: 700;
    color: #0b5ed7;
}

.upload-progress-card {
    background: #f7f9fc;
    border-radius: 12px;
    padding: 12px;
    text-align: left;
    border: 1px solid #e2e9f5;
}

.upload-progress-head {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: baseline;
    margin-bottom: 8px;
}

.upload-progress-title {
    font-size: 13px;
    font-weight: 600;
    color: #243447;
    overflow-wrap: anywhere;
}

.upload-progress-status {
    font-size: 12px;
    color: #5b6472;
    text-align: right;
}

.upload-progress-track {
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: #d9e2ef;
    overflow: hidden;
}

.upload-progress-fill {
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #0b5ed7, #3a8bfd);
    transition: width 0.2s ease;
}

.status-note {
    margin-top: 12px;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
}

.status-note.pending {
    background: #fff3cd;
    color: #664d03;
}

.status-note.completed {
    background: #d1e7dd;
    color: #0f5132;
}

.status-note.error {
    background: #f8d7da;
    color: #842029;
}

/* ===== Ready / expired ===== */

.ready-files {
    margin-top: 15px;
    width: 100%;
    text-align: left;
}

.ready-summary {
    margin-top: 15px;
    margin-bottom: 6px;
    text-align: left;
}

.file-meta {
    font-size: 12px;
    color: #666;
    flex: 0 0 auto;
}

.preview-card {
    margin-top: 8px;
    margin-bottom: 14px;
    padding: 14px;
    border-radius: 14px;
    background: #eef4ff;
}

.preview-title {
    font-size: 13px;
    font-weight: 700;
    color: #0b5ed7;
    margin-bottom: 10px;
}

.preview-image,
.preview-media,
.preview-pdf {
    width: 100%;
    display: block;
    border: 0;
    border-radius: 12px;
    background: transparent;
}

.preview-image {
    max-height: 360px;
    object-fit: contain;
}

.preview-media {
    min-height: 54px;
}

.preview-pdf {
    min-height: 420px;
}

.preview-link {
    display: inline-block;
    margin-top: 10px;
    color: #0b5ed7;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.preview-link:hover {
    text-decoration: underline;
}

.preview-empty,
.archive-status {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}

.archive-list {
    margin: 10px 0 0;
    padding-left: 18px;
    color: #333;
    font-size: 13px;
    line-height: 1.45;
    max-height: 220px;
    overflow: auto;
}

.ready-download-btn {
    display: inline-block;
    width: 100%;
    text-decoration: none;
    box-sizing: border-box;
    text-align: center;
    margin-top: 15px;
}

.timer-box {
    margin-top: 15px;
    padding: 12px;
    border-radius: 10px;
    background: #f7f9fc;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

/* ===== Error / disclaimer ===== */

.error {
    margin-top: 10px;
    color: #dc3545;
    font-size: 14px;
}

.disclaimer {
    margin-top: 20px;
    font-size: 12px;
    color: #777;
    line-height: 1.45;
}

/* ===== Contacts ===== */

.contacts {
    margin-top: 20px;
    text-align: center;
    width: 100%;
}

.contacts a {
    display: inline-block;
    color: #0b5ed7;
    text-decoration: none;
    background: #eef4ff;
    padding: 8px 12px;
    border-radius: 10px;
    transition: 0.2s;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.contact-qr {
    margin-top: 10px;
}

.contact-qr summary {
    display: inline-block;
    list-style: none;
    cursor: pointer;
    color: #0b5ed7;
    background: #eef4ff;
    padding: 8px 12px;
    border-radius: 10px;
    transition: 0.2s;
    font-size: 13px;
    font-weight: 600;
}

.contact-qr summary::-webkit-details-marker {
    display: none;
}

.contact-qr summary:hover {
    background: #dce9ff;
    transform: translateY(-2px);
}

.qr-image {
    display: block;
    width: min(220px, 100%);
    margin: 12px auto 0;
    border-radius: 14px;
    background: white;
    padding: 10px;
    box-shadow: 0 10px 22px rgba(11, 94, 215, 0.12);
}

.result-qr {
    text-align: center;
}

.contacts a:hover {
    background: #dce9ff;
    transform: translateY(-2px);
}

/* ===== SEO Section ===== */

.seo-section {
    width: min(920px, calc(100vw - 32px));
    margin: 0 auto 32px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
    text-align: left;
    animation: fadeIn 0.5s ease;
}

.seo-section h2 {
    color: #0b5ed7;
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 1.25;
}

.seo-main {
    color: #555;
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 15px;
}

.seo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.seo-item {
    display: flex;
    gap: 12px;
    background: #f7f9fc;
    padding: 14px;
    border-radius: 14px;
    transition: 0.2s;
}

.seo-item:hover {
    transform: translateY(-2px);
    background: #eef4ff;
}

.seo-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}

.seo-item h3 {
    margin: 0;
    font-size: 15px;
    color: #0b5ed7;
    line-height: 1.3;
}

.seo-item p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #666;
    line-height: 1.45;
}

.seo-footer {
    margin-top: 16px;
    font-size: 14px;
    color: #777;
    line-height: 1.55;
}

/* ===== Admin ===== */

.admin-card {
    width: min(1400px, calc(100vw - 32px));
    max-width: min(1400px, calc(100vw - 32px));
    text-align: left;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.admin-link-btn {
    display: inline-block;
    text-decoration: none;
    background: #0b5ed7;
    color: white;
    padding: 10px 14px;
    border-radius: 10px;
    transition: 0.2s;
    font-size: 14px;
}

.admin-link-btn:hover {
    background: #094db1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.stat-box {
    background: #f7f9fc;
    border-radius: 14px;
    padding: 14px;
    text-align: center;
}

.stat-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #0b5ed7;
    line-height: 1.2;
}

.admin-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.admin-search {
    flex: 1 1 280px;
    min-width: 220px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.admin-select {
    min-width: 160px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
    background: white;
}

.admin-filter-btn {
    margin-top: 0;
    white-space: nowrap;
    padding: 10px 14px;
}

.admin-table-wrap {
    overflow-x: auto;
    background: #f7f9fc;
    border-radius: 16px;
    padding: 10px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.admin-table th,
.admin-table td {
    padding: 8px;
    border-bottom: 1px solid #e3e7ef;
    text-align: left;
    vertical-align: middle;
}

.admin-table th {
    color: #555;
    font-weight: 600;
    background: #f0f0f0;
    white-space: nowrap;
}

.admin-table a {
    text-decoration: none;
    color: #007bff;
}

.admin-table a:hover {
    text-decoration: underline;
}

.mono {
    font-family: Consolas, monospace;
    font-size: 12px;
    white-space: nowrap;
}

.admin-file-cell {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.badge-active {
    background: #d4edda;
    color: #155724;
}

.badge-expired {
    background: #f8d7da;
    color: #721c24;
}

.extend-form {
    display: flex;
    gap: 5px;
    align-items: center;
}

.admin-mini-select {
    min-width: 90px;
    font-size: 11px;
    padding: 4px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: white;
}

.admin-empty {
    text-align: center;
    color: #777;
    padding: 20px !important;
    opacity: 0.7;
}

/* ===== Animation ===== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */

@media (max-width: 900px) {
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-link-btn {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .seo-grid {
        grid-template-columns: 1fr;
    }

    .seo-section {
        padding: 20px;
    }

    .card {
        padding: 24px 20px;
    }

    h1 {
        font-size: 26px;
    }

    .seo-section h2 {
        font-size: 22px;
    }

    .admin-table th,
    .admin-table td {
        font-size: 11px;
        padding: 6px;
    }

    .admin-file-cell {
        max-width: 120px;
    }

    .preview-pdf {
        min-height: 320px;
    }

    .upload-progress-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .upload-progress-status {
        text-align: left;
    }
}

@media (max-width: 520px) {
    .wrapper {
        padding: 16px 12px 12px;
    }

    .card,
    .seo-section,
    .admin-card {
        max-width: calc(100vw - 24px);
    }

    .admin-filters {
        flex-direction: column;
    }

    .admin-search,
    .admin-select {
        width: 100%;
        min-width: 0;
    }

    .extend-form {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-mini-select,
    .admin-small-btn {
        width: 100%;
    }

    .card {
        padding: 20px 16px;
    }

    .result-summary .summary-grid,
    .ready-summary .summary-grid {
        grid-template-columns: 1fr;
    }

    .summary-item {
        padding: 10px;
    }

    .summary-row {
        gap: 10px;
    }

    .summary-value {
        text-align: right;
    }

    .summary-label {
        max-width: 110px;
        white-space: normal;
    }

    .result-box input,
    .password-wrapper input,
    .options-row select {
        min-width: 0;
    }

    .upload-progress-card {
        padding: 10px;
    }

    .upload-progress-title,
    .upload-progress-status {
        font-size: 11px;
    }
}
