body.ceu-upload-page header,
body.ceu-upload-page footer,
body.ceu-upload-page .site-header,
body.ceu-upload-page .site-footer,
body.ceu-upload-page #typing-demo {
    display: none !important;
}

body.ceu-upload-page.ast-plain-container.ast-no-sidebar #primary {
    margin-top: 0 !important;
}

body.ceu-upload-page #typing-demo-div {
    border: none !important;
}

body.ceu-upload-page {
    background: #f5f7f7;
}

.ceu-custom-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    box-sizing: border-box;
}

.ceu-header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ceu-header-right a {
    color: #111;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.ceu-header-right a:hover {
    color: #0A7F7F;
}

.ceu-header-right a img{
    margin:0 7px
}
.ceu-header-center img {
    max-height: 54px;
    width: auto;
    display: block;
}

.ceu-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px 40px;
}

.ceu-wrapper {
    width: 100%;
    max-width: 860px;
    background: white;
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(10,127,127,.12);
}

.ceu-wrapper h1 {
    text-align: center;
    color: #0A7F7F;
    font-size: 52px;
    margin: 0 0 12px;
}

.ceu-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.ceu-dropzone {
    border: 2px dashed #0A7F7F;
    border-radius: 28px;
    padding: 60px 24px;
    text-align: center;
    background: rgba(10,127,127,.04);
}

.ceu-icon {
    width: 80px;
    height: 80px;
    background: #0A7F7F;
    color: white;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 34px;
}

#ceu-browse,
.ceu-submit {
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

#ceu-browse {
    background: #F45D48;
}

.ceu-small-fields {
    width: 30%;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ceu-small-fields input,
.ceu-small-fields select {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    width: 100%;
    box-sizing: border-box;
}
.ceu-file-item {
    padding: 12px 16px;
    border-radius: 14px;
    background: #f7f7f7;
    margin-bottom: 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ceu-remove-file {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 999px;
    background: #F45D48;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    flex-shrink: 0;
        margin-left: 12px;
}

.ceu-remove-file:hover {
    opacity: .9;
}
.ceu-submit {
    width: 100%;
    margin-top: 28px;
    background: #0A7F7F;
}

#ceu-file-list {
    margin-top: 18px;
}

.ceu-file-item {
     padding: 12px 20px;
    border-radius: 12px;
    background: #f7f7f7;
    margin-bottom: 8px;
}
.ceu-file-item span {
    flex: 1;
    min-width: 0;
    word-break: break-word;
}
#ceu-message {
    margin-top: 18px;
    text-align: center;
    font-weight: 700;
}

.ceu-honeypot {
    display: none !important;
}

@media (max-width: 768px) {
    .ceu-custom-header {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
    }

    .ceu-header-left {
        justify-content: center;
    }

    .ceu-wrapper {
        padding: 28px;
    }

    .ceu-wrapper h1 {
        font-size: 36px;
    }

    .ceu-small-fields {
        width: 100%;
    }
}