:root {
    /* LIGHT MODE (Varsayılan) */
    --bg-body: #fdfdfd;
    --bg-header: #ffffff;
    --bg-footer: #f4f4f4;
    --text-main: #333333;
    --text-secondary: #555555;
    --border-color: #e5e5e5;

    --primary-color: #ff4d6d; /* O tatlı pembe/kırmızı tonu */
    --top-bar-bg: #d90429;
    --top-bar-text: #ffffff;

    --card-bg: #ffffff;
    --input-bg: #ffffff;
}

/* DARK MODE */
[data-theme="dark"] {
    --bg-body: #121212;
    --bg-header: #1e1e1e;
    --bg-footer: #181818;
    --text-main: #e0e0e0;
    --text-secondary: #b0b0b0;
    --border-color: #333333;

    --primary-color: #ff758f; /* Dark mode için biraz daha yumuşak pembe */
    --top-bar-bg: #800f2f;
    --top-bar-text: #e0e0e0;

    --card-bg: #1e1e1e;
    --input-bg: #2d2d2d;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    transition: background-color 0.3s, color 0.3s;
}
