
        
        :root {
            --primary: #155ce1;
            --primary-dark: #f06524;
            --secondary: #155ce1;
            --accent: #ff7b47;
            --accent-gradient: linear-gradient(135deg, #ff7b47, #ff5252);
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --background: #f8fafc;
            --card-bg: #ffffff;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --radius: 24px; /* Αύξηση της ακτίνας από 12px σε 24px */
            --radius-inner: 20px; /* Νέα μεταβλητή για εσωτερικά στοιχεία */
            --transition: all 0.3s ease;

             --font-family: 'Roboto', sans-serif;
        }



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

        .dark-mode {
            --light-bg: #0f172a;
            --card-bg: #1e293b;
            --text-primary: #e2e8f0;
            --text-secondary: #94a3b8;
        }

        .theme-toggle {
            width: 50px;
            height: 26px;
            background: var(--dark-bg);
            border-radius: 25px;
            position: relative;
            cursor: pointer;
            display: flex;
            align-items: center;
            padding: 0 3px;
        }

        .theme-toggle::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: white;
            transition: var(--transition);
            left: 3px;
        }

        .theme-toggle.active {
            background: var(--primary-color);
        }

        .theme-toggle.active::before {
            transform: translateX(24px);
        }

