/* Move notices to the top of our page */
.celia-admin-notice {
    position: relative;
    z-index: 100;
    margin: 20px 0;
}

/* Ensure our content is below notices */
.wrap {
    position: relative;
    z-index: 1;
}

/* Header styles */
.celia-header {
    background: linear-gradient(135deg, #6B46C1 0%, #805AD5 100%);
    padding: 2rem;
    margin: 20px 20px 20px 0;
    border-radius: 8px;
    color: white;
}

.celia-header h1 {
    font-size: 2.5em;
    margin-bottom: 1rem;
    color: white;
}

/* Features section */
.celia-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.celia-feature {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.celia-feature h3 {
    color: #6B46C1;
    font-size: 1.2em;
    margin-bottom: 0.5rem;
}

.celia-feature p {
    color: #4b5563;
    margin: 0;
}

/* Verification section */
.verification-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    max-width: 600px;
    margin-top: 2rem;
}

.verification-section h2 {
    color: #1f2937;
    font-size: 1.5em;
    margin-bottom: 1rem;
}

.verification-input {
    width: 120px !important;
    font-size: 1.5em !important;
    text-align: center;
    letter-spacing: 0.5em;
}

/* Meta mapping section */
.meta-mapping-section {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-top: 2rem;
}

.meta-mapping-section h2 {
    color: #1f2937;
    font-size: 1.5em;
    margin-bottom: 1rem;
}

.meta-mapping-container {
    margin-top: 1.5rem;
}

.meta-mapping-columns {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.meta-mapping-column {
    flex: 1;
    position: relative;
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.meta-mapping-column h3 {
    color: #6B46C1;
    font-size: 1.2em;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.meta-key-selector {
    width: 100%;
    max-width: 400px;
}

.meta-key-option {
    display: flex;
    justify-content: space-between;
    padding: 4px 8px;
}

.meta-key-name {
    font-weight: 500;
}

.meta-key-value {
    color: #6b7280;
    font-size: 0.9em;
    margin-left: 8px;
}

.winners-meta {
    position: relative;
    opacity: 1;
    background: #f0f4f8;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    z-index: 1;
    pointer-events: none;
}

.coming-soon-badge {
    background: #6B46C1;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    transform: rotate(-15deg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1.1em;
}

.winners-meta-content {
    position: relative;
    z-index: 0;
} 