body {
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth; /* Smooth scrolling for anchor links */
        }
        /* Custom scrollbar for better aesthetics */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        /* Custom style for message box */
        .message-box {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #4CAF50;
            color: #fff;
            padding: 32px 48px;           /* %50 daha büyük kutu */
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            font-size: 2rem;              /* Yazı boyutunu büyüt */
            font-weight: bold;            /* Yazıyı kalın yap */
            text-align: center;
            min-width: 350px;
            max-width: 90vw;
        }
        .message-box.show {
            opacity: 1;
            visibility: visible;
        }
        .message-box.success { background: #4CAF50; }
        .message-box.error { background: #f44336; }
        
     