/* Main CSS to match reference image */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, sans-serif;
}

.amity-app-layout {
    min-height: 100vh;
    display: flex;
}

/* Adjustments for fixed sidebar */
.amity-app-layout .flex-1 {
    min-width: 0;
}

/* Progress Bar shadow */
.progress-shadow {
    box-shadow: 0 0 10px #ffd285;
}

/* Transitions */
.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom shadow per image */
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Inputs refinement */
input, select {
    transition: all 0.2s ease;
}

input:focus, select:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Step sidebar line */
.relative.space-y-8::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 1rem;
    bottom: 1rem;
    width: 1px;
    background: rgba(255,255,255,0.05);
}
