* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: #f8fafc;
    color: #111827;
    line-height: 1.6;
}

.site {
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;

    display:flex;
    flex-direction:column;
}


/*
    Header
*/

.header {
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #e5e7eb;
}


.brand {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
}


.nav {
    display: flex;
    gap: 28px;
}


.nav a {
    color: #374151;
    text-decoration: none;
    font-size: 15px;
}


.nav a:hover {
    color: #111827;
}


/*
    Main
*/

.main {
    flex: 1;

    padding: 10px 0;
}


/*
    Footer
*/

.footer {
    padding: 30px 0;

    border-top: 1px solid #e5e7eb;

    color: #6b7280;
    font-size: 14px;
}


.site-brand-logo {

    width: 160px;

    height: auto;

    display: block;

}

/*
    Responsive
*/

@media (max-width: 640px) {

    .site {
        padding: 0 18px;
    }


    .header {
        height: auto;
        padding: 22px 0;

        flex-direction: column;
        gap: 18px;
    }


    .main {
        padding: 40px 0;
    }

}

.upload-page {

    width:100%;

    display:flex;

    flex-direction:column;

    align-items:center;

}


.upload-page .hero {

    width:100%;

    max-width:100%;

}


.upload-page .upload-card {

    width:100%;

    max-width:100%;

}


.upload-page .features {

    width:100%;

    max-width:100%;

    grid-template-columns:repeat(3, 1fr);

}


.upload-page .features div {

    min-height:100px;
    margin-bottom: 25px;

}


.hero {
    text-align: center;
    max-width: 620px;
    margin-bottom: 45px;
}


.hero h1 {
    margin: 0 0 16px;

    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -0.04em;
}


.hero p {
    margin: 25px;

    color: #6b7280;
    font-size: 18px;
}


/*
    Upload card
*/

.upload-card {
    width: 100%;
    max-width: 100%;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 18px;

    padding: 36px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}


.upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 190px;

    border: 2px dashed #d1d5db;
    border-radius: 14px;

    cursor: pointer;

    text-align: center;

    transition: border-color .2s ease;
}


.upload-area:hover {
    border-color: #2563eb;
}


.upload-title {
    font-size: 18px;
    font-weight: 600;
}


.upload-description {
    margin-top: 8px;

    color: #6b7280;
    font-size: 14px;
}


.upload-area input {
    margin-top: 20px;
}


/*
    Button
*/

button {
    width: 100%;

    margin-top: 24px;

    padding: 14px 20px;

    border: none;
    border-radius: 10px;

    background: #2563eb;

    color: white;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
}


button:hover {
    background: #1d4ed8;
}


/*
    Features
*/

.features {

    width: 100%;
    max-width: 700px;

    margin-top: 25px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 10px;
}


.features div {

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 14px;

    padding: 10px;

    text-align: center;
}


.features strong {

    display: block;

    font-size: 15px;

    margin-bottom: 8px;
}


.features span {

    display: block;

    color: #6b7280;

    font-size: 14px;
}


@media (max-width: 700px) {

    .hero h1 {
        font-size: 34px;
    }


    .features {
        grid-template-columns: 1fr;
    }


    .upload-card {
        padding: 22px;
    }

}


.upload-area input {
    display: none;
}


.file-button {

    margin-top: 20px;

    padding: 10px 22px;

    background: #f3f4f6;

    border: 1px solid #d1d5db;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 600;

    color: #374151;

    cursor: pointer;
}

/*
    File page
*/


.file-page {
    display:flex;
    justify-content:center;
}


.file-card {

    width:100%;
    max-width:620px;

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    padding:36px;

    box-shadow:0 10px 30px rgba(0,0,0,0.04);

}


.file-header {

    margin-bottom:30px;

}


.file-header h1 {

    margin:0 0 8px;

    font-size:28px;

    letter-spacing:-0.03em;

}


.file-header p {

    color:#6b7280;

}



.file-info {

    display:grid;

    gap:15px;

    margin-bottom:30px;

}


.file-info div {

    display:flex;

    justify-content:space-between;

    padding:12px 0;

    border-bottom:1px solid #f1f5f9;

}


.file-info span {

    color:#6b7280;

}



.status-box {

    text-align:center;

    padding-top:20px;

}


.status-box h2 {

    margin-bottom:10px;

}


.status-box p {

    color:#6b7280;

    margin-bottom:25px;

}



.actions {

    display:flex;

    gap:15px;

    justify-content:center;

}



.primary-button,
.secondary-button {

    display:inline-block;

    padding:12px 22px;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;

}


.primary-button {

    background:#2563eb;

    color:white;

}


.secondary-button {

    background:#f3f4f6;

    color:#374151;

}

.upload-area.dragging {

    border-color:#2563eb;

    background:#f8fafc;

}


.upload-area input {

    display:none;

}

.status-spinner {
    width: 32px;
    height: 32px;

    margin: 0 auto 20px;

    border: 3px solid #e5e7eb;
    border-top-color: #2563eb;

    border-radius: 50%;

    animation: filepriv-spin 0.8s linear infinite;
}


@keyframes filepriv-spin {

    to {
        transform: rotate(360deg);
    }

}


/*
    Conversion options
*/

.conversion-options {
    margin-top: 20px;
}


.conversion-options label {
    display: block;

    margin-bottom: 8px;

    font-size: 14px;
    font-weight: 600;

    color: #374151;
}


.conversion-options select {
    width: 100%;

    padding: 13px 16px;

    border: 1px solid #d1d5db;
    border-radius: 10px;

    background: #ffffff;
    color: #111827;

    font-family: inherit;
    font-size: 15px;

    cursor: pointer;

    outline: none;

    appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #6b7280 50%),
        linear-gradient(135deg, #6b7280 50%, transparent 50%);

    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 13px) 50%;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;

    padding-right: 42px;
}


.conversion-options select:focus {
    border-color: #2563eb;
}

/*
    Error page
*/

.error-page {
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-card {
    width: 100%;
    max-width: 560px;

    padding: 40px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);

    text-align: center;
}

.error-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #fef2f2;
    color: #dc2626;

    font-size: 24px;
    font-weight: 700;
}

.error-card h1 {
    margin: 0;

    font-size: 28px;
    letter-spacing: -0.03em;
}

.error-card p {
    margin: 12px 0 0;

    color: #6b7280;
    font-size: 15px;
}

.error-card .error-detail {
    margin-top: 8px;

    font-size: 14px;
}

.error-button {
    display: inline-block;

    margin-top: 26px;
    padding: 12px 22px;

    border-radius: 9px;

    background: #2563eb;
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}

/*
    Private Notes
*/


.notes-page {
    width: 100%;
    display: flex;
    justify-content: center;
}


.notes-card {

    width: 100%;
    max-width: 100%;

    background: #ffffff;

    border: 1px solid #e5e7eb;

    border-radius: 18px;

    padding: 36px;

    margin-top: 0px;

    margin-bottom: 35px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.04);

}


.notes-header {

    margin-bottom: 30px;

}


.notes-header h1 {

    margin: 0 0 10px;

    font-size: 30px;

    letter-spacing: -0.03em;

}


.notes-header p {

    color: #6b7280;

}


.notes-card textarea {

    width: 100%;

    min-height: 180px;

    padding: 14px;

    border: 1px solid #d1d5db;

    border-radius: 10px;

    resize: vertical;

    font-family: inherit;

    font-size: 15px;

}


.notes-card textarea:focus {

    outline: none;

    border-color: #2563eb;

}


.notes-card select {

    width: 100%;

    padding: 13px 16px;

    border-radius: 10px;

    border: 1px solid #d1d5db;

    background: #ffffff;

    font-family: inherit;

    font-size: 15px;

}


.notes-upload {

    margin-top: 20px;

}


.notes-upload label {

    display: block;

    margin-bottom: 8px;

    font-weight: 600;

    color: #374151;

}


.notes-upload input {

    width: 100%;

}


.notes-button {

    width: 100%;

    margin-top: 25px;

}


/*
    Created link page
*/


.note-link {

    padding: 16px;

    background: #f8fafc;

    border: 1px solid #e5e7eb;

    border-radius: 10px;

    word-break: break-all;

    font-size: 14px;

}


.note-warning {

    margin-top: 20px;

    padding: 14px;

    background: #eff6ff;

    border-radius: 10px;

    color: #374151;

    font-size: 14px;

}


/*
    Reading page
*/


.note-content {

    padding: 20px;

    background: #f8fafc;

    border-radius: 12px;

    border: 1px solid #e5e7eb;

    white-space: pre-wrap;

}


.note-images {

    margin-top: 30px;

}


.note-images img {

    max-width: 100%;

    border-radius: 12px;

    border: 1px solid #e5e7eb;

    margin-top: 15px;

}


@media(max-width:700px){

    .notes-card {

        padding: 22px;

    }

}

.notes-upload input {
    display:none;
}


/*
    Metadata Cleaner
*/


.metadata-page {
    width: 100%;
    display:flex;
    justify-content:center;
}


.metadata-card {

    width:100%;
    max-width:100%;

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    padding:36px;

    margin-top: 0px;

    margin-bottom: 35px;

    box-shadow:0 10px 30px rgba(0,0,0,0.04);

}


.metadata-header {

    margin-bottom:30px;

}


.metadata-header h1 {

    margin:0 0 10px;

    font-size:30px;

    letter-spacing:-0.03em;

}


.metadata-header p {

    color:#6b7280;

}


/*
    Steps
*/


.metadata-steps {

    display:flex;

    flex-direction:column;

    gap:16px;

}


.metadata-step {

    padding:18px;

    border:1px solid #e5e7eb;

    border-radius:12px;

    background:#f8fafc;

}


.metadata-step strong {

    display:block;

    font-size:16px;

}


.metadata-step p {

    margin:8px 0 0;

    color:#6b7280;

    font-size:14px;

}


/*
    Metadata Cleaner Spinner Fix
*/


.metadata-spinner {

    width: 38px;

    height: 38px;

    margin: 0 auto 18px;

    border: 3px solid #e5e7eb;

    border-top-color: #2563eb;

    border-radius: 50%;

    animation: filepriv-spin 0.8s linear infinite;

}



.metadata-step {

    text-align: left;

}



.metadata-step strong {

    color: #111827;

}



.metadata-result {

    margin-top: 20px;

}



.metadata-result p {

    color: #6b7280;

}



.metadata-result ul {

    margin-top: 18px;

}



.metadata-result li {

    margin-bottom: 8px;

}


/*
    Result
*/


.metadata-result {

    margin-top:25px;

    padding:22px;

    background:#f8fafc;

    border:1px solid #e5e7eb;

    border-radius:12px;

}


.metadata-result h2 {

    margin-top:0;

}


.metadata-result ul {

    padding-left:20px;

    color:#374151;

}


.metadata-result li {

    margin-bottom:8px;

}


@media(max-width:700px){

    .metadata-card {

        padding:22px;

    }

}


/*
    Conversion information
*/


.conversion-info {

    width:100%;
    max-width:800px;

    margin-top:70px;

}


.conversion-info-header {

    text-align:center;

    margin-bottom:35px;

}


.conversion-info-header h2 {

    margin:0 0 12px;

    font-size:30px;

    letter-spacing:-0.03em;

}


.conversion-info-header p {

    color:#6b7280;

    font-size:16px;

}



.conversion-grid {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}



.conversion-box {

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:14px;

    padding:24px;

}



.conversion-box h3 {

    margin-top:0;

    margin-bottom:10px;

    font-size:18px;

}



.conversion-box p {

    color:#6b7280;

    font-size:14px;

    min-height:70px;

}



.format-list {

    display:flex;

    flex-wrap:wrap;

    gap:8px;

    margin-top:18px;

}



.format-list span {

    padding:6px 10px;

    background:#f3f4f6;

    border-radius:8px;

    font-size:13px;

    font-weight:600;

    color:#374151;

}



@media(max-width:700px){

    .conversion-grid {

        grid-template-columns:1fr;

    }

}


/*
    Conversion landing page tightening
*/

.upload-page .hero {

    width:100%;

    max-width:1200px;

    margin-bottom: -25px;

}

.upload-page .hero h1 {

    font-size: 38px;

    margin-bottom: 12px;

}


.upload-page .hero p {

    font-size: 16px;

}


.conversion-info {

    width:100%;

    max-width:760px;

    margin-top:40px;

}


.conversion-info-header {

    text-align:center;

    margin-bottom:25px;

}


.conversion-info-header h2 {

    margin:0 0 10px;

    font-size:28px;

    letter-spacing:-0.03em;

}


.conversion-info-header p {

    margin:0;

    color:#6b7280;

    font-size:15px;

}


.conversion-grid {

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

}


.conversion-box {

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:14px;

    padding:22px;

}


.conversion-box h3 {

    margin:0 0 10px;

    font-size:18px;

}


.conversion-box p {

    margin:0 0 18px;

    color:#6b7280;

    font-size:14px;

}


.format-list {

    display:flex;

    flex-wrap:wrap;

    gap:8px;

}


.format-list span {

    padding:5px 10px;

    background:#f3f4f6;

    border-radius:8px;

    font-size:13px;

    font-weight:600;

    color:#374151;

}



@media(max-width:700px){

    .conversion-grid {

        grid-template-columns:1fr;

    }

}


.info-section {

    width:100%;

    max-width:620px;

    margin-top:45px;

    text-align:center;

}


.info-section h2 {

    margin-bottom:12px;

    font-size:28px;

    letter-spacing:-0.03em;

}


.info-section p {

    color:#6b7280;

    font-size:15px;

}

.upload-page .features:last-of-type {

    margin-top: -10px;

}

.display-logo {

    width: 100px;

    height: auto;

    display: block;

    margin-left: auto;
    margin-right: auto;

}

.free-limit-box {
    margin: 20px 0;
    padding: 16px 18px;

    background: #ffffff;
    border: 1px solid #4077cc;
    border-radius: 8px;

    text-align: center;
}

.free-limit-title {
    font-size: 14px;
    color: #000000;
    margin-bottom: 8px;
}

.free-limit-count {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
}


.limit-reached-box {
    margin: 20px 0;
    padding: 20px;

    background: #ffffff;
    border: 1px solid #ff0000;
    border-radius: 8px;

    text-align: center;
}

.limit-reached-box h3 {
    margin: 0 0 10px;

    font-size: 18px;
    color: #f87171;
}

.limit-reached-box p {
    margin: 6px 0;

    color: #000000;
    font-size: 14px;
}


.file-card input {

    width:100%;

    padding:13px 16px;

    border:1px solid #d1d5db;

    border-radius:10px;

    font-family:inherit;

    font-size:15px;

    margin-top:8px;

}


.file-card input:focus {

    outline:none;

    border-color:#2563eb;

}


.conversion-options input {

    width:100%;

    padding:13px 16px;

    border:1px solid #d1d5db;

    border-radius:10px;

    background:#ffffff;

    font-family:inherit;

    font-size:15px;

}


.conversion-options input:focus {

    outline:none;

    border-color:#2563eb;

}


/*
    Pro purchase page
*/

.pro-card {

    width:100%;
    max-width:620px;

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    padding:36px;

    box-shadow:0 10px 30px rgba(0,0,0,0.04);

}


.pro-header {

    text-align:center;

    margin-bottom:30px;

}


.pro-header h2 {

    margin:0 0 15px;

    font-size:30px;

    letter-spacing:-0.03em;

}


.pro-price {

    font-size:34px;

    font-weight:700;

}


.pro-price span {

    font-size:16px;

    color:#6b7280;

    font-weight:400;

}



.pro-details {

    border-top:1px solid #e5e7eb;

    border-bottom:1px solid #e5e7eb;

    margin-bottom:25px;

}



.pro-details div {

    display:flex;

    justify-content:space-between;

    padding:14px 0;

    border-bottom:1px solid #f1f5f9;

}


.pro-details div:last-child {

    border-bottom:none;

}


.pro-details span {

    color:#6b7280;

}


.pro-details strong {

    font-weight:600;

}



@media(max-width:700px){

    .pro-card {

        padding:22px;

    }


    .pro-details div {

        flex-direction:column;

        gap:5px;

    }

}

/*
    Pro payment address
*/

.payment-address {

    padding:16px;

    background:#f8fafc;

    border:1px solid #e5e7eb;

    border-radius:10px;

    word-break:break-all;

    font-size:14px;

    color:#374151;

}


/*
    Pro payment status
*/

.status-box {

    text-align:center;

    padding-top:30px;

}


.status-box h2 {

    margin-bottom:10px;

}


.status-box p {

    color:#6b7280;

}

.payment-grid {

    display:grid;

    grid-template-columns: 1fr 1.2fr;

    gap:30px;

}



.payment-box {

    background:#f8fafc;

    border:1px solid #e5e7eb;

    border-radius:14px;

    padding:25px;

}



.qr-box {

    display:flex;

    justify-content:center;

    margin:20px 0;

}



.payment-address {

    padding:15px;

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:10px;

    word-break:break-word;

    overflow-wrap:anywhere;

    font-family:monospace;

    font-size:13px;

    line-height:1.5;

    text-align:left;

}


.payment-note {

    margin-top:15px;

    color:#6b7280;

    font-size:14px;

    text-align:center;

}



@media(max-width:700px){

    .payment-grid {

        grid-template-columns:1fr;

    }

}


/* Pro payment success */

.token-success {
    margin-top: 25px;

    padding: 25px;

    text-align: center;

    border: 1px solid var(--color-border);

    background: var(--color-background);
}


.token-success h2 {

    margin-bottom: 8px;

    font-size: 22px;

}


.token-success p {

    margin-bottom: 15px;

    color: var(--color-muted);

}



.token-success .file-header {

    margin-top: 25px;

    margin-bottom: 15px;

}



.token-success .file-header h1 {

    font-size: 18px;

    margin-bottom: 8px;

}



.token-success .file-header p {

    font-size: 14px;

    margin-bottom: 0;

}



.token-box {

    margin: 15px auto;

    max-width: 600px;

    padding: 14px 18px;

    font-size: 14px;

    word-break: break-all;

    text-align: center;

}



.copy-button {

    margin-top: 10px;

    padding: 10px 18px;

    border: 1px solid var(--color-border);

    background: var(--color-background);

    cursor: pointer;

    font-size: 14px;

}



.copy-button:hover {

    opacity: 0.8;

}


.token-success {
    margin-top:25px;
    padding:25px;
}

.token-area {
    margin-top:25px;
    padding-top:20px;
    border-top:1px solid var(--color-border);
}


.token-area h3 {
    margin-bottom:8px;
}


.token-box {
    font-size:14px;
    word-break:break-all;
    margin-top:15px;
}


.copy-button {
    margin-top:15px;
}


.payment-address {
    word-break:break-all;
    text-align:center;
}


.copy-button {

    width:auto;

    display:inline-block;

    margin-top:15px;

    padding:10px 22px;

    background:#f3f4f6;

    color:#374151;

    border:1px solid #d1d5db;

    border-radius:10px;

    font-size:14px;

    font-weight:600;

}


.copy-button:hover {

    background:#e5e7eb;

}

/*
    Compact Pro Payment Layout
*/

.pro-payment-card {
    padding: 24px;
}


.pro-payment-card .free-limit-box {

    margin: 0 0 20px;

    padding: 12px 16px;

}


.pro-payment-card .payment-grid {

    gap: 20px;

}


.pro-payment-card .file-header {

    margin-bottom: 15px;

}


.pro-payment-card .file-header h1 {

    font-size: 22px;

}


.pro-payment-card .file-header p {

    margin: 0;

    font-size: 14px;

}


.payment-box {

    padding: 18px;

}


.qr-box {

    margin: 10px 0;

}


.qr-box svg {

    width: 170px;

    height: 170px;

}


.payment-address {

    padding: 12px;

    font-size: 12px;

}


.copy-button {

    width: auto;

    display: inline-block;

    margin-top: 10px;

    padding: 9px 16px;

    border-radius: 8px;

}


.payment-note {

    margin-top: 8px;

}


/*
    Success area
*/


.token-success {

    margin-top: 20px;

    padding: 18px;

}


.token-success h2 {

    font-size: 20px;

    margin-bottom: 5px;

}


.token-success p {

    margin-bottom: 10px;

}


.token-area {

    margin-top: 15px;

    padding-top: 15px;

}


.token-area h3 {

    margin:0 0 8px;

    font-size:18px;

}


.token-box {

    margin:10px auto;

    padding:12px;

    font-size:12px;

}



.status-box {

    padding-top:20px;

}


.status-spinner {

    width:26px;

    height:26px;

}


/*
    FilePriv Pro Payment Premium Styling
*/

.pro-payment-card {

    background:#ffffff;

    border:1px solid #dbeafe;

    border-radius:20px;

    box-shadow:
        0 20px 50px rgba(37,99,235,0.08);

    padding:28px;

}


.pro-payment-card .free-limit-box {

    background:#eff6ff;

    border:1px solid #bfdbfe;

    border-radius:12px;

}


.pro-payment-card .free-limit-title {

    color:#475569;

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:.08em;

}


.pro-payment-card .free-limit-count {

    color:#2563eb;

    font-size:24px;

    font-weight:700;

}



/*
    Payment columns
*/

.pro-payment-card .payment-grid {

    gap:24px;

}


.pro-payment-card .payment-details {

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:16px;

    padding:22px;

}


.pro-payment-card .payment-box {

    background:#f8fafc;

    border:1px solid #dbeafe;

    border-radius:16px;

}



/*
    Headers
*/

.pro-payment-card .file-header h1 {

    font-size:22px;

    color:#111827;

}


.pro-payment-card .file-header p {

    color:#64748b;

}



/*
    Payment rows
*/

.pro-payment-card .file-info {

    gap:0;

}


.pro-payment-card .file-info div {

    padding:12px 0;

}


.pro-payment-card .file-info strong {

    color:#111827;

}



/*
    Address box
*/

.pro-payment-card .payment-address {

    background:#ffffff;

    border:1px solid #cbd5e1;

    color:#334155;

    border-radius:12px;

    padding:14px;

    font-size:12px;

    box-shadow:
        inset 0 1px 2px rgba(0,0,0,.04);

}



/*
    Copy button premium
*/

.pro-payment-card .copy-button {

    background:#2563eb;

    color:#ffffff;

    border:none;

    border-radius:10px;

    padding:10px 20px;

    font-weight:600;

}


.pro-payment-card .copy-button:hover {

    background:#1d4ed8;

}



/*
    QR
*/

.pro-payment-card .qr-box {

    background:#ffffff;

    border-radius:14px;

    padding:12px;

    border:1px solid #e5e7eb;

}



/*
    Waiting status
*/

.pro-payment-card .status-box {

    margin-top:24px;

    padding:20px;

    border-radius:16px;

    background:#f8fafc;

    border:1px solid #e5e7eb;

}


.pro-payment-card .status-box h2 {

    color:#111827;

}



/*
    Success area
*/

.pro-payment-card .token-success {

    background:#f0fdf4;

    border:1px solid #bbf7d0;

}


.pro-payment-card .token-success h2 {

    color:#166534;

}


.pro-payment-card .token-area {

    background:#ffffff;

    border:1px solid #d1fae5;

    border-radius:14px;

    padding:18px;

}


.pro-payment-card .token-box {

    background:#f8fafc;

    border:1px solid #cbd5e1;

}



/*
    Mobile
*/

@media(max-width:700px){

    .pro-payment-card {

        padding:18px;

    }


    .pro-payment-card .payment-details,
    .pro-payment-card .payment-box {

        padding:16px;

    }

}


/*
    Pro payment copy buttons
*/

.payment-address + .copy-button {
    display: block;

    margin: 12px auto 0;

    width: auto;

    padding: 9px 18px;

    line-height: 1.2;
}



.file-info .copy-button {

    display: inline-block;

    width: auto;

    margin: 0 0 0 12px;

    padding: 6px 12px;

    font-size: 13px;

    line-height: 1.2;

    vertical-align: middle;

}


/*
    Professional Footer
*/

.footer {

    margin-top: 60px;

    padding: 45px 0 25px;

    border-top: 1px solid #e5e7eb;

    color: #6b7280;

}


.footer-grid {

    display:grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap:40px;

}



.footer-brand p {

    max-width:320px;

    margin-top:15px;

    color:#6b7280;

    font-size:14px;

    line-height:1.6;

}



.footer-logo {

    width:130px;

    height:auto;

    display:block;

}



.footer h3 {

    margin:0 0 15px;

    font-size:15px;

    font-weight:600;

    color:#111827;

}



.footer a {

    display:block;

    margin-bottom:10px;

    color:#6b7280;

    text-decoration:none;

    font-size:14px;

}



.footer a:hover {

    color:#111827;

}



.footer-bottom {

    margin-top:35px;

    padding-top:20px;

    border-top:1px solid #e5e7eb;

    text-align:center;

}



.footer-bottom p {

    margin:0;

    font-size:13px;

    color:#9ca3af;

}



@media(max-width:800px){


    .footer-grid {

        grid-template-columns:1fr 1fr;

        gap:30px;

    }


}



@media(max-width:600px){


    .footer-grid {

        grid-template-columns:1fr;

    }


    .footer-brand p {

        max-width:100%;

    }


}

.admin-nav {

    display:flex;

    justify-content:center;

    align-items:center;

    gap:15px;

    margin-bottom:25px;

    flex-wrap:wrap;

}


.admin-nav a {

    display:flex;

    align-items:center;

    justify-content:center;

    height:42px;

    padding:0 18px;

    border:1px solid var(--color-border);

    background:var(--color-background);

    color:var(--color-text);

    text-decoration:none;

    font-size:14px;

    box-sizing:border-box;

}



.admin-nav form {

    display:flex;

    align-items:center;

    height:42px;

    margin:0;

    padding:0;

}



.admin-nav button {

    display:flex;

    align-items:center;

    justify-content:center;

    height:42px;

    padding:0 18px;

    border:1px solid var(--color-border);

    background:var(--color-background);

    color:var(--color-text);

    font-size:14px;

    font-family:inherit;

    cursor:pointer;

    box-sizing:border-box;

}


/*
    About FilePriv Page
*/


.about-page {

    width:100%;

    display:flex;

    justify-content:center;

}



.about-container {

    width:100%;

    max-width:100%;

}



.about-hero {

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    padding:40px;

    margin-bottom:25px;

    box-shadow:0 10px 30px rgba(0,0,0,0.04);

}



.about-hero h1 {

    margin:0 0 15px;

    font-size:36px;

    letter-spacing:-0.04em;

    color:#111827;

}



.about-hero p {

    margin:0;

    color:#6b7280;

    font-size:17px;

    line-height:1.7;

}





.about-content {

    display:flex;

    flex-direction:column;

    gap:20px;

}





.about-intro,
.about-card,
.about-warning {

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:18px;

    padding:32px;

    box-shadow:0 10px 30px rgba(0,0,0,0.04);

}



.about-intro {

    border-left:4px solid #e5e7eb;

}





.about-card h2 {

    margin:0 0 18px;

    font-size:24px;

    letter-spacing:-0.03em;

    color:#111827;

}





.about-card h3 {

    margin:0 0 10px;

    font-size:18px;

    color:#111827;

}





.about-card p,
.about-intro p {

    color:#374151;

    line-height:1.8;

    margin:0 0 16px;

}





.about-grid {

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:25px;

}





.about-box {

    background:#f8fafc;

    border:1px solid #e5e7eb;

    border-radius:14px;

    padding:24px;

}





.about-box strong {

    display:block;

    color:#111827;

    font-size:14px;

    letter-spacing:.1em;

    margin-bottom:15px;

}





.about-box p {

    margin:0;

    color:#6b7280;

    line-height:1.7;

}





.about-warning {

    border-left:4px solid #e5e7eb;

    color:#374151;

    line-height:1.7;

}





.about-warning strong {

    color:#111827;

}





@media(max-width:700px){


    .about-hero,
    .about-intro,
    .about-card,
    .about-warning {

        padding:22px;

    }



    .about-grid {

        grid-template-columns:1fr;

    }



    .about-hero h1 {

        font-size:30px;

    }



    .about-card h2 {

        font-size:21px;

    }


}

/*
    =========================================================
    FilePriv Status Page
    =========================================================
*/

.status-page {
    width: 100%;
    display: block;
}

.status-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}


/*
    Hero
*/

.status-hero {
    width: 100%;

    margin-bottom: 25px;
    padding: 32px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.status-hero h1 {
    margin: 0 0 12px;

    color: #111827;

    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.status-hero p {
    max-width: 760px;

    margin: 0;

    color: #6b7280;

    font-size: 16px;
    line-height: 1.7;
}


/*
    Content
*/

.status-content {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 20px;
}


/*
    Overall status
*/

.status-overview {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 20px;

    padding: 25px 30px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.status-overview-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f3f4f6;

    border: 1px solid #d1d5db;
    border-radius: 50%;

    color: #374151;

    font-size: 23px;
    font-weight: 700;
}

.status-overview h2 {
    margin: 0 0 5px;

    color: #111827;

    font-size: 22px;
    line-height: 1.3;
}

.status-overview p {
    margin: 0;

    color: #6b7280;

    font-size: 14px;
}


/*
    Main cards
*/

.status-card {
    width: 100%;

    padding: 30px 32px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.status-card h2 {
    margin: 0 0 14px;

    color: #111827;

    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.status-card p {
    margin: 0 0 16px;

    color: #374151;

    font-size: 15px;
    line-height: 1.75;
}

.status-card p:last-child {
    margin-bottom: 0;
}


/*
    Service list
*/

.status-services {
    width: 100%;

    display: flex;
    flex-direction: column;

    margin-top: 25px;
}


/*
    Individual service
*/

.status-service {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 22px 0;

    border-top: 1px solid #e5e7eb;
}

.status-service:first-child {
    padding-top: 0;

    border-top: none;
}

.status-service:last-child {
    padding-bottom: 0;
}


/*
    Service information
*/

.status-service-info {
    flex: 1;
    min-width: 0;
}

.status-service-info h3 {
    margin: 8px 0 6px;

    color: #111827;

    font-size: 17px;
    font-weight: 600;
}

.status-service-info p {
    margin: 0;

    color: #6b7280;

    font-size: 14px;
    line-height: 1.6;
}


/*
    Small status badge
*/

.status-indicator {
    display: inline-block;

    padding: 5px 9px;

    background: #f3f4f6;

    border: 1px solid #e5e7eb;
    border-radius: 6px;

    color: #374151;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.05em;

    text-transform: uppercase;
}


/*
    Right-side status
*/

.status-operational {
    flex-shrink: 0;

    color: #374151;

    font-size: 14px;
    font-weight: 600;
}


/*
    Bottom information box
*/

.status-note {
    width: 100%;

    padding: 24px 28px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);

    color: #6b7280;

    font-size: 14px;
    line-height: 1.7;
}

.status-note strong {
    color: #111827;
}


/*
    Mobile
*/

@media (max-width: 700px) {

    .status-hero {
        padding: 24px 20px;
    }


    .status-hero h1 {
        font-size: 28px;
    }


    .status-overview {
        align-items: flex-start;

        padding: 22px 20px;
    }


    .status-overview-icon {
        width: 46px;
        height: 46px;

        font-size: 20px;
    }


    .status-overview h2 {
        font-size: 20px;
    }


    .status-card {
        padding: 24px 20px;
    }


    .status-card h2 {
        font-size: 20px;
    }


    .status-service {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }


    .status-operational {
        font-size: 13px;
    }


    .status-note {
        padding: 20px;
    }

}


/*
    =========================================================
    FilePriv Help Center
    =========================================================
*/

.help-page {
    width: 100%;
    display: block;
}

.help-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}


/*
    Hero
*/

.help-hero {
    width: 100%;

    margin-bottom: 25px;
    padding: 32px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.help-hero h1 {
    margin: 0 0 12px;

    color: #111827;

    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.help-hero p {
    max-width: 760px;

    margin: 0;

    color: #6b7280;

    font-size: 16px;
    line-height: 1.7;
}


/*
    Content
*/

.help-content {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 20px;
}


/*
    Introduction
*/

.help-intro {
    padding: 30px 32px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.help-intro h2 {
    margin: 0 0 14px;

    color: #111827;

    font-size: 22px;
}

.help-intro p {
    margin: 0 0 16px;

    color: #374151;

    font-size: 15px;
    line-height: 1.75;
}

.help-intro p:last-child {
    margin-bottom: 0;
}


/*
    Main cards
*/

.help-card {
    width: 100%;

    padding: 30px 32px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.help-card > h2 {
    margin: 0 0 14px;

    color: #111827;

    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.help-card > p {
    margin: 0 0 16px;

    color: #374151;

    font-size: 15px;
    line-height: 1.75;
}

.help-card > p:last-child {
    margin-bottom: 0;
}


/*
    Process boxes
*/

.help-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px;

    margin-top: 25px;
}

.help-box {
    padding: 24px;

    background: #f8fafc;

    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.help-number {
    display: block;

    margin-bottom: 15px;

    color: #6b7280;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.08em;
}

.help-box h3 {
    margin: 0 0 9px;

    color: #111827;

    font-size: 17px;
}

.help-box p {
    margin: 0;

    color: #6b7280;

    font-size: 14px;
    line-height: 1.65;
}


/*
    Information list
*/

.help-info-list {
    display: flex;
    flex-direction: column;

    margin-top: 25px;
}

.help-info-list > div {
    padding: 18px 0;

    border-top: 1px solid #e5e7eb;
}

.help-info-list > div:first-child {
    border-top: none;
    padding-top: 0;
}

.help-info-list > div:last-child {
    padding-bottom: 0;
}

.help-info-list strong {
    display: block;

    margin-bottom: 6px;

    color: #111827;

    font-size: 15px;
}

.help-info-list p {
    margin: 0;

    color: #6b7280;

    font-size: 14px;
    line-height: 1.6;
}


/*
    FAQ
*/

.help-faq {
    display: flex;
    flex-direction: column;

    margin-top: 25px;
}

.help-faq-item {
    padding: 22px 0;

    border-top: 1px solid #e5e7eb;
}

.help-faq-item:first-child {
    border-top: none;
    padding-top: 0;
}

.help-faq-item:last-child {
    padding-bottom: 0;
}

.help-faq-item h3 {
    margin: 0 0 8px;

    color: #111827;

    font-size: 17px;
}

.help-faq-item p {
    margin: 0;

    color: #6b7280;

    font-size: 14px;
    line-height: 1.7;
}


/*
    Bottom note
*/

.help-note {
    padding: 25px 28px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.help-note strong {
    display: block;

    margin-bottom: 8px;

    color: #111827;

    font-size: 16px;
}

.help-note p {
    margin: 0;

    color: #6b7280;

    font-size: 14px;
    line-height: 1.7;
}


/*
    Mobile
*/

@media (max-width: 700px) {

    .help-hero {
        padding: 24px 20px;
    }

    .help-hero h1 {
        font-size: 28px;
    }

    .help-intro {
        padding: 24px 20px;
    }

    .help-card {
        padding: 24px 20px;
    }

    .help-card > h2 {
        font-size: 20px;
    }

    .help-grid {
        grid-template-columns: 1fr;
    }

    .help-box {
        padding: 20px;
    }

    .help-note {
        padding: 20px;
    }

}

/*
    =========================================================
    FilePriv Contact Page
    =========================================================
*/

.contact-page {
    width: 100%;
}

.contact-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}


/*
    Hero
*/

.contact-hero {
    margin-bottom: 25px;
    padding: 32px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-hero h1 {
    margin: 0 0 12px;

    color: #111827;

    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.contact-hero p {
    max-width: 760px;

    margin: 0;

    color: #6b7280;

    font-size: 16px;
    line-height: 1.7;
}


/*
    Layout
*/

.contact-layout {
    display: grid;

    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.8fr);

    gap: 20px;

    align-items: start;
}


/*
    Form card
*/

.contact-form-card,
.contact-info-card {
    padding: 30px 32px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}


/*
    Card header
*/

.contact-card-header {
    margin-bottom: 28px;
}

.contact-card-header h2,
.contact-info-card h2 {
    margin: 0 0 10px;

    color: #111827;

    font-size: 22px;
    line-height: 1.3;
}

.contact-card-header p {
    margin: 0;

    color: #6b7280;

    font-size: 14px;
    line-height: 1.6;
}


/*
    Form
*/

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.contact-field {
    display: flex;
    flex-direction: column;
}

.contact-field label {
    margin-bottom: 8px;

    color: #374151;

    font-size: 14px;
    font-weight: 600;
}

.contact-field input,
.contact-field textarea {
    width: 100%;

    padding: 13px 15px;

    background: #ffffff;

    border: 1px solid #d1d5db;
    border-radius: 10px;

    color: #111827;

    font-family: inherit;
    font-size: 15px;

    outline: none;
}

.contact-field input {
    height: 48px;
}

.contact-field textarea {
    min-height: 190px;

    resize: vertical;

    line-height: 1.6;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #9ca3af;

    box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.12);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #9ca3af;
}


/*
    Form footer
*/

.contact-form-footer {
    padding-top: 5px;
}

.contact-form-footer p {
    margin: 0 0 15px;

    color: #6b7280;

    font-size: 13px;
    line-height: 1.6;
}

.contact-form-footer button {
    width: 100%;

    margin-top: 0;

    padding: 13px 20px;

    border: none;
    border-radius: 10px;

    background: #2563eb;

    color: #ffffff;

    font-family: inherit;
    font-size: 15px;
    font-weight: 600;

    cursor: pointer;
}

.contact-form-footer button:hover {
    background: #1d4ed8;
}


/*
    Information card
*/

.contact-info-card h2 {
    margin-bottom: 22px;
}

.contact-info-item {
    padding: 20px 0;

    border-top: 1px solid #e5e7eb;
}

.contact-info-item:first-of-type {
    padding-top: 0;

    border-top: none;
}

.contact-info-item:last-child {
    padding-bottom: 0;
}

.contact-info-item h3 {
    margin: 0 0 8px;

    color: #111827;

    font-size: 16px;
}

.contact-info-item p {
    margin: 0;

    color: #6b7280;

    font-size: 14px;
    line-height: 1.7;
}


/*
    Success message
*/

.contact-success {
    margin-bottom: 20px;

    padding: 20px 24px;

    background: #f8fafc;

    border: 1px solid #d1d5db;
    border-radius: 12px;
}

.contact-success strong {
    display: block;

    margin-bottom: 5px;

    color: #111827;

    font-size: 16px;
}

.contact-success p {
    margin: 0;

    color: #4b5563;

    font-size: 14px;
}


/*
    Validation errors
*/

.contact-errors {
    margin-bottom: 20px;

    padding: 20px 24px;

    background: #ffffff;

    border: 1px solid #d1d5db;
    border-radius: 12px;
}

.contact-errors strong {
    color: #111827;

    font-size: 15px;
}

.contact-errors ul {
    margin: 10px 0 0;

    padding-left: 20px;
}

.contact-errors li {
    margin-bottom: 5px;

    color: #6b7280;

    font-size: 14px;
}


/*
    Bottom note
*/

.contact-note {
    margin-top: 20px;

    padding: 22px 26px;

    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 14px;

    color: #6b7280;

    font-size: 14px;
    line-height: 1.7;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-note strong {
    color: #111827;
}


/*
    Mobile
*/

@media (max-width: 800px) {

    .contact-layout {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .contact-hero {
        padding: 24px 20px;
    }

    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 24px 20px;
    }

    .contact-card-header h2,
    .contact-info-card h2 {
        font-size: 20px;
    }

    .contact-note {
        padding: 20px;
    }

}

/*
|--------------------------------------------------------------------------
| FilePriv Admin Contact Inbox
|--------------------------------------------------------------------------
*/

.admin-inbox {
    width: 100%;
    max-width: 100%;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #dfe3e8;
    border-radius: 10px;

    overflow: hidden;
}


/*
|--------------------------------------------------------------------------
| Toolbar
|--------------------------------------------------------------------------
*/

.admin-inbox-toolbar {
    display: flex;

    align-items: center;
    justify-content: space-between;

    min-height: 52px;

    padding: 0 20px;

    background: #fafbfc;

    border-bottom: 1px solid #e5e7eb;
}


.admin-inbox-label {
    margin-right: 10px;

    color: #111827;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.08em;
}


.admin-inbox-count {
    color: #8a929d;

    font-size: 13px;
}


/*
|--------------------------------------------------------------------------
| Message List
|--------------------------------------------------------------------------
*/

.admin-message-list {
    width: 100%;
}


.admin-message {
    width: 100%;

    box-sizing: border-box;

    padding: 18px 20px 14px;

    background: #ffffff;

    border-bottom: 1px solid #e8ebef;
}


.admin-message:last-child {
    border-bottom: 0;
}


/*
|--------------------------------------------------------------------------
| Message Header
|--------------------------------------------------------------------------
*/

.admin-message-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 25px;
}


.admin-message-main {
    min-width: 0;

    flex: 1;
}


.admin-message-subject {
    margin-bottom: 5px;

    color: #171a1f;

    font-size: 15px;
    font-weight: 650;

    line-height: 1.4;

    overflow-wrap: anywhere;
}


.admin-message-from {
    display: flex;

    align-items: center;

    gap: 8px;

    min-width: 0;

    color: #8a929d;

    font-size: 12px;

    line-height: 1.4;
}


.admin-message-name {
    color: #4b5563;

    font-weight: 600;

    white-space: nowrap;
}


.admin-message-email {
    min-width: 0;

    overflow: hidden;

    text-overflow: ellipsis;
    white-space: nowrap;
}


.admin-message-date {
    flex-shrink: 0;

    padding-top: 1px;

    color: #9aa1aa;

    font-size: 11px;

    line-height: 1.5;

    text-align: right;

    white-space: nowrap;
}


.admin-message-date span {
    display: block;

    color: #b0b6bd;
}


/*
|--------------------------------------------------------------------------
| Message Body
|--------------------------------------------------------------------------
*/

.admin-message-body {
    margin-top: 12px;

    color: #4b5563;

    font-size: 13px;

    line-height: 1.65;
}


.admin-message-text {
    white-space: pre-wrap;

    overflow-wrap: anywhere;
}


.admin-message-toggle {
    display: inline;

    margin: 7px 0 0;

    padding: 0;

    border: 0;

    background: transparent;

    color: #6b7280;

    font-family: inherit;

    font-size: 12px;
    font-weight: 600;

    line-height: 1.4;

    text-decoration: underline;
    text-decoration-color: #d1d5db;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;

    cursor: pointer;
}


.admin-message-toggle:hover {
    color: #111827;

    text-decoration-color: #9ca3af;
}


.admin-message-body.is-expanded {
    color: #374151;
}


/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/

.admin-message-footer {
    display: flex;

    align-items: center;

    margin-top: 13px;
    padding-top: 9px;

    border-top: 1px solid #f0f2f4;

    color: #b0b6bd;

    font-size: 10px;

    letter-spacing: 0.02em;
}


/*
|--------------------------------------------------------------------------
| Empty State
|--------------------------------------------------------------------------
*/

.admin-inbox-empty {
    padding: 65px 30px;

    text-align: center;
}


.admin-inbox-empty-title {
    margin-bottom: 7px;

    color: #1f2937;

    font-size: 16px;
    font-weight: 650;
}


.admin-inbox-empty p {
    margin: 0;

    color: #9ca3af;

    font-size: 13px;
}


/*
|--------------------------------------------------------------------------
| Pagination
|--------------------------------------------------------------------------
*/

.admin-message-pagination {
    display: flex;

    justify-content: center;

    padding: 18px 20px;

    background: #fafbfc;

    border-top: 1px solid #e5e7eb;
}


/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 700px) {

    .admin-inbox-toolbar {
        padding: 0 15px;
    }


    .admin-message {
        padding: 16px 15px 13px;
    }


    .admin-message-top {
        gap: 12px;
    }


    .admin-message-from {
        display: block;
    }


    .admin-message-name {
        display: block;

        margin-bottom: 2px;
    }


    .admin-message-email {
        display: block;

        max-width: 100%;
    }


    .admin-message-date {
        font-size: 10px;
    }

}

.nav-toggle {
    display: none !important;
}


@media screen and (max-width: 768px) {

    .header {
        position: relative;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }

    .nav-toggle {
        display: block !important;

        width: 130px;
        height: 25px;

        margin-top: -25px;

        padding: 0;

        background: #2074d5 !important;
        color: #ffffff !important;

        border: 0 !important;
        border-radius: 4px;

        font-size: 15px;
        line-height: 25px;
        text-align: center;

        cursor: pointer;

        z-index: 2001;
    }

    .nav-toggle:hover {
        background: #565656 !important;
        color: #ffffff !important;
    }

    .nav {
        display: none !important;

        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        width: 100%;

        box-sizing: border-box;

        flex-direction: column;

        padding: 15px 20px;

        background: #ffffff;

        z-index: 2000;
    }

    .nav.open {
        display: flex !important;
    }

    .nav a {
        display: block;

        width: 100%;

        box-sizing: border-box;

        padding: 13px 0;

        color: #000000 !important;

        text-decoration: none;
    }

    .nav a:hover {
        color: #000000 !important;
    }

}


.error-page {

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 500px;

    padding: 40px 20px;

}


.error-card {

    max-width: 500px;

    width: 100%;

    text-align: center;

    padding: 40px;

    background: #ffffff;

    border: 1px solid #e5e7eb;

}


.error-card h1 {

    margin: 0;

    font-size: 72px;

    color: #1d4ed8;

}


.error-card h2 {

    margin-top: 10px;

    font-size: 28px;

}


.error-card p {

    margin: 20px 0;

    line-height: 1.6;

}


.error-button {

    display: inline-block;

    padding: 12px 24px;

    background: #1d4ed8;

    color: #ffffff;

    text-decoration: none;

}


.error-button:hover {

    color: #ffffff;

}
