.bottom-nav,
.bottom-bar,
nav[class*="bottom"],
div[class*="bottom-nav"],
div[class*="bottom-bar"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.seller-request-container {
    max-width: 850px;
    margin: 0 auto;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    position: relative;
    z-index: 10;
}

.seller-request-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 40px;
    border: 1px solid #eaeaea;
}

.seller-request-header {
    text-align: center;
    margin-bottom: 35px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 20px;
}

.seller-request-header h1 {
    font-size: 28px;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 8px;
}

.seller-request-header p {
    color: #718096;
    font-size: 15px;
}

.form-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #2b6cb0;
    margin: 25px 0 15px 0;
    padding-bottom: 6px;
    border-bottom: 2px solid #ebf8ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    padding: 11px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 14px;
    color: #2d3748;
    transition: all 0.2s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.file-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.file-wrapper {
    background: #f7fafc;
    border: 1px dashed #cbd5e0;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s ease;
}

.file-wrapper:hover {
    background: #edf2f7;
    border-color: #4299e1;
}

.file-wrapper input[type="file"] {
    font-size: 12px;
    color: #4a5568;
    margin-top: 5px;
    width: 100%;
}

.file-wrapper-full {
    grid-column: 1 / -1;
}

.submit-btn {
    background: linear-gradient(135deg, #3182ce 0%, #2b6cb0 100%);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    margin-top: 30px;
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.2);
    transition: all 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(43, 108, 176, 0.3);
}

.submit-btn:disabled {
    background: #a0aec0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#response-alert {
    display: none;
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

#response-alert.alert-success {
    background-color: #f0fff4;
    color: #38a169;
    border: 1px solid #c6f6d5;
}

#response-alert.alert-danger {
    background-color: #fff5f5;
    color: #e53e3e;
    border: 1px solid #fed7d7;
}

.seller-pending-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.seller-pending-content {
    width: 100%;
    max-width: 560px;
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}

.pending-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #fff7ed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.seller-pending-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.seller-pending-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 28px;
}

.pending-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #eff6ff;
    color: #2563eb;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #bfdbfe;
}

.pending-status::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2563eb;
    animation: pulse 1.5s infinite;
}

.is-hidden {
    display: none !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
