   body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
          /*  padding: 20px; */
			text-align: right;
			direction: rtl;
        }
        h2 {
            text-align: center;
            color: #333;
        }
        form {
            max-width: 600px;
            margin: 0 auto;
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        fieldset {
            border: 1px solid #ddd;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 8px;
        }
        legend {
            font-weight: bold;
            padding: 0 10px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
        }
        input[type="text"], input[type="tel"], input[type="password"], select, input[type="file"], input[type="email"] {
            width: calc(100% - 22px);
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        .checkbox-group {
            margin-bottom: 15px;
			display: flex;
            flex-wrap: wrap;
            gap: 5px;
            justify-content: flex-start;
            align-items: center;
            width: 100%;
            max-width: 600px;
        }
        .checkbox-group label {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            font-weight: normal; /* שינוי לכתב רגיל */
        }
        input[type="checkbox"] {
			margin-right: 5px; /* מרווח בין ה-checkbox לטקסט */
             margin-left: 5px; /* מרווח בין ה-checkbox לטקסט */
        }
        .submit-container {
            text-align: center;
        }
        input[type="submit"] {
            background-color: #007bff;
            color: #fff;
            border: none;
            padding: 10px 20px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            display: inline-block;
        }
        input[type="submit"]:hover {
            background-color: #0056b3;
        }
        a {
            color: #007bff;
        }
        a:hover {
            text-decoration: underline;
        }
        p {
            text-align: center;
        }
		
		.menu {
            display: flex;
            justify-content: center; /* מרכז את התפריט */
            align-items: center; /* ליישר את התוכן באמצע */
            position: relative; /* מאפשר למקם את הלוגו באופן יחסי */
			    background-color: #000000;
    padding: 3px;
        }

        .menu ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: inline-block;
        }

        .menu li {
            display: inline;
            margin-right: 15px;
        }

        .menu a {
            color: white;
            text-decoration: none;
            font-size: 16px;
        }
		
		.form-field {
           // padding: 0.5em 2em;
            margin-bottom: 20px;
        }
		
		.city-choice {
          width: 95%;
		font-size: 15px;
        }
		
		@media (max-width: 768px) {
		.city-choice {
				  width: 92%;
				font-size: 15px;
				}
		
        }
		
		.tag-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: flex-start;
            align-items: center;
            margin: 20px;
            width: 100%;
            max-width: 600px;
        }
        .about_cat {
            position: relative; /* Needed for tooltip positioning */
            cursor: pointer;
        }
        .sel {
            background-color: #4CAF50;
            color: white;
            padding: 10px;
            border-radius: 5px;
        }
        .unsel {
            background-color: #f0f0f0;
            color: black;
            padding: 10px;
            border-radius: 5px;
        }
        .tooltip {
            visibility: hidden;
            background-color: #555;
            color: #fff;
            text-align: center;
            border-radius: 5px;
            padding: 10px;
            position: absolute;
            z-index: 1;
            bottom: 125%; /* Position above the text */
            left: 50%;
            transform: translateX(-50%); /* Center the tooltip */
            opacity: 0;
            transition: opacity 0.3s;
            width: 150px; /* Set a fixed width for the tooltip */
            max-width: 400px; /* Max width */
            word-wrap: break-word; /* Allow text to wrap */
        }
        .about_cat:hover .tooltip {
            visibility: visible;
            opacity: 1;
        }
        @media (max-width: 768px) {
            .tag-group {
                width: 100%;
                margin: 10px;
            }
        }
		
		/*##########################################################*/