/* PT. Genitri Bregas Persada - Corporate DKV Styling Rules */

.g-pattern {
    background-image: radial-gradient(#0066cc 0.8px, transparent 0.8px), radial-gradient(#00acc1 0.8px, #f8fafc 0.8px);
    background-size: 24px 24px;
    background-position: 0 0, 12px 12px;
    opacity: 0.15;
}

.g-gradient-mesh {
    background: radial-gradient(circle at 10% 20%, rgba(0, 102, 204, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 95% 15%, rgba(0, 172, 193, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 50% 90%, rgba(191, 161, 0, 0.02) 0%, transparent 50%);
}

.page-sheet {
    width: 100%;
    max-width: 850px;
    min-height: 600px;
    box-sizing: border-box;
    background: white;
    position: relative;
    box-shadow: 0 20px 50px rgba(28, 39, 51, 0.06), 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: background-color 0.3s ease, font-family 0.3s ease;
}

/* Strict DKV alignment constraints for body */
.section-editable-hover {
    border: 1.5px dashed transparent;
    transition: all 0.2s ease-in-out;
    cursor: text;
}
.section-editable-hover:hover {
    border-color: #00ACC1;
    background-color: rgba(0, 172, 193, 0.015);
}
.section-editable-hover:focus-within {
    border-style: solid;
    border-color: #0066CC;
    background-color: rgba(0, 102, 204, 0.005);
    outline: none;
}

/* Modern Contenteditable Placeholder Style */
[contenteditable=true]:empty:before {
    content: attr(placeholder);
    color: #94a3b8;
    font-style: italic;
    font-weight: normal;
    font-size: inherit;
    pointer-events: none;
}

/* Beautiful Fading Animation for Media & Badges */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
