        .popup_trimis {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 1;
            visibility: visible;
            display: flex;
            justify-content: center;
            align-items: center;
        }


        .popup {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            z-index:9999999999999;
        }

        .popup:target {
            opacity: 1;
            visibility: visible;
            display: flex;
        }

        .popdown:target {display:none}

        .popup-content {
            background-color: white;
            padding: 20px;
            border-radius: 5px;
            width: 94%;
            max-width: 800px;
            position: relative;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .close {
            position: absolute;
            top: 10px;
            right: 14px;
            text-decoration: none;
            font-size: 24px;
            color: #333;
        }



        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: center;
            gap: 10px;
        }

        .star-rating input {
            display: none;
        }

        .star-rating label {
            font-size: 40px;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .star-rating label:before {
            content: "★";
        }

        .star-rating input:checked ~ label {
            color: #ffc107;
        }

        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffdb70;
        }

        /* Hidden field for star rating validation */
        .rating-validation {
            opacity: 0;
            height: 0;
            left:48%;
            top:140px;
            position: absolute;
            pointer-events: none;
            text-align:center;
        }

