  body {
            font-family: 'Cairo', sans-serif;
            background-color: #F9F9F9;
            overflow-x: hidden;
        }

        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, #B20710, #E63946);
            border-radius: 5px;
            border: 2px solid #f1f1f1;
        }

        .nav-link {
            position: relative;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            right: 0;
            background-color: #B20710;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .line-clamp-2 {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden;
        }

        .line-clamp-3 {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 3;
            overflow: hidden;
        }
          .recipe-content p {
            margin-bottom: 0.9rem;
        }

        .recipe-content ul {
            list-style: none;
            padding: 0;
            margin: 0 0 0.8rem 0;
        }

        .recipe-content li {
            margin-bottom: 0.4rem;
        }