/* ============================================
   ZOET Factuuraanvragen - Standalone Styles
   ============================================ */

:root {
    --primary: #e11d48;
    --primary-dark: #be123c;
    --secondary: #fbbf24;
    --bg: #fef7f0;
    --bg-card: #ffffff;
    --text: #1f2937;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 20px 0;
    text-align: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 40px;
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

/* Main Content */
.main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.welcome-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
    width: 100%;
    text-align: center;
}

.welcome-card h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.subtitle {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 30px;
}

/* Placeholder */
.placeholder-content {
    background: #fef3c7;
    border: 2px dashed var(--secondary);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 30px;
}

.placeholder-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.placeholder-content p {
    color: #92400e;
    font-weight: 500;
}

.placeholder-content .small {
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
}

/* Info Box */
.info-box {
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: var(--radius);
    padding: 25px;
    text-align: left;
}

.info-box h3 {
    font-size: 16px;
    font-weight: 600;
    color: #166534;
    margin-bottom: 15px;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: #15803d;
}

.info-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

.info-box li:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    padding: 20px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 15px;
    }

    .welcome-card {
        padding: 25px;
    }

    .welcome-card h1 {
        font-size: 24px;
    }

    .logo-text {
        font-size: 26px;
    }

    .logo-icon {
        font-size: 32px;
    }
}
