.seo-h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.tpl-hidden {
    display: none;
}

.message-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    pointer-events: none;
}

.message-toast {
    min-width: 300px;
    max-width: 500px;
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    pointer-events: auto;
    animation: slideInTop 0.3s ease-out;
    position: relative;
}

.message-toast.success {
    background: #f0f9ff;
    border-left: 4px solid #10b981;
    color: #065f46;
}

.message-toast.error {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

.message-toast.warning {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    color: #92400e;
}

.message-toast.info {
    background: #eff6ff;
    border-left: 4px solid #3b82f6;
    color: #1e40af;
}

.message-toast-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

.message-toast.success .message-toast-icon {
    color: #10b981;
}

.message-toast.error .message-toast-icon {
    color: #ef4444;
}

.message-toast.warning .message-toast-icon {
    color: #f59e0b;
}

.message-toast.info .message-toast-icon {
    color: #3b82f6;
}

.message-toast-content {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
}

.message-toast-close {
    width: 20px;
    height: 20px;
    margin-left: 12px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.message-toast-close:hover {
    opacity: 1;
}

@keyframes slideInTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutTop {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.message-toast.hiding {
    animation: slideOutTop 0.3s ease-out forwards;
}

.feedback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.feedback-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.feedback-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 500px;
    width: 90%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.feedback-header {
    padding: 20px;
    position: relative;
    text-align: center;
}

.feedback-title {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

.feedback-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.feedback-body {
    padding: 20px;
}

.feedback-form-group {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.feedback-form-group label {
    width: 80px;
    margin-right: 15px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    flex-shrink: 0;
}

.feedback-form-group input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.custom-select {
    position: relative;
    flex: 1;
}

.custom-select input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    width: 100%;
}

.feedback-form-group input:focus {
    outline: none;
    border-color: #ffda69;
}

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1001;
    display: none;
}

.option {
    padding: 10px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.option:hover {
    background: #f8f9fa;
}

.option:last-child {
    border-bottom: none;
}

.feedback-footer {
    text-align: center;
    margin-top: 30px;
}

.btn-feedback {
    background: #ffda69;
    color: #333;
    border: none;
    padding: 12px 40px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 500;
}

.btn-feedback:hover {
    background: #f5c842;
}

.required.is-invalid {
    border-color: #dc3545;
}

.pc-tip-inline {
    margin-top: 6px;
    color: #909399;
    font-size: 12px;
}

.pc-progress-mt-10 {
    margin-top: 10px;
}

.pc-selected-tag {
    background: linear-gradient(135deg, #ffda69, #f5c842);
    color: #333;
    border: none;
    height: 40px;
    line-height: 38px;
    padding: 0 16px;
    margin-right: 8px;
}

.pc-inline-form-row {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.pc-flex-1 {
    flex: 1;
}

.pc-flex-shrink-0 {
    flex-shrink: 0;
}

.pc-editor-textarea {
    width: 100%;
    min-height: 400px;
    border: none;
    outline: none;
    padding: 16px;
    font-size: 14px;
    line-height: 1.6;
    resize: vertical;
}

.pc-muted-helper {
    margin-top: 8px;
    color: #909399;
    font-size: 12px;
}

.pc-icon-ml-4 {
    margin-left: 4px;
}

.pc-text-center {
    text-align: center;
}

.pc-relative {
    position: relative;
}

.pc-inline-block {
    display: inline-block;
}

.pc-currency-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 150px;
    padding: 8px 0;
}

.pc-currency-option {
    padding: 8px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pc-gap-19 {
    gap: 19px;
}

.pc-line-height-tight {
    line-height: 1.2;
}

.pc-order-2 {
    order: 2;
}

.pc-mb-19 {
    margin-bottom: 19px;
}

.pc-transparent-card {
    background: transparent;
    padding: 0;
    margin-bottom: 19px;
}

.pc-card-header-compact {
    padding: 10px 19px;
    border: none;
}

.pc-px-19 {
    padding: 0 19px;
}

.pc-empty-news-state {
    padding: 40px 0;
}

.pc-empty-news-text {
    font-size: 14px;
    color: #999;
}
