        body {
            font-family: Arial, sans-serif;
            background-color: #121212;
            color: #fff;
            min-height: 100vh;
            padding: 50px 10px;
        }

        .maindiv {
            overflow-x: hidden;
            align-items: center;
            max-width: 1200px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        input[type="text"] {
            width: 350px;
            padding: 17px 15px;
            border: none;
            border-radius: 8px;
            background-color: #1e1e1e;
            color: #fff;
            font-size: 20px;
        }

        input[type="text"]::placeholder {
            color: #888;
        }

        .card {
            position: relative;
            width: 250px;
            height: 320px;
            background-color: #1e1e1e;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
        }

        .bg-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .blurred-layer {
            position: absolute;
            bottom: 5%;
            width: 100%;
            height: 35%;
            background-size: cover;
            background-position: bottom;
            filter: blur(30px);
            z-index: 1;
            mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), #000000);
            -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0));
            mask: 100% 100%;
            -webkit-mask: 100% 100%;
            mask-repeat: no-repeat;
            -webkit-mask-repeat: no-repeat;


        }

        .content {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
            z-index: 2;
        }

        .content h3 {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 6px;
        }

        .content p {
            font-size: 14px;
            color: #ddd;
            line-height: 1.4;
        }

        .no-users {
            text-align: center;
            color: whitesmoke;
            padding: 20px;
            font-family: Arial, sans-serif;
        }

        .no-users h3 {
            font-size: 40px;
            margin-bottom: 10px;
        }

        .no-users p {
            font-size: 19px;
            color: #797979;
        }
