
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
body {
	 font-family: 'Arial', sans-serif;
	 color: #333;
	 background-color: #f4f4f4;
	 margin: 0;
	 padding: 0;
	}

	    .tour-feedback-container {
      max-width: 1000px;
      margin: 40px auto;
      padding: 20px;
    }

  

  .tour-feedback-item {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background: white;
}

.tour-feedback-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.tour-feedback-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.tour-feedback-name {
  font-weight: bold;
}

.tour-feedback-stars {
  color: gold;
  font-size: 16px;
  margin-left: 5px;
}

.read-toggle-feedback {
  color: #007bff;
  cursor: pointer;
  margin-top: 8px;
  font-size: 14px;
}

.reply-wrapper {
  margin-top: 15px;
}

.toggle-replies {
  color: #007bff;
  cursor: pointer;
  font-size: 14px;
  margin-bottom: 8px;
}

.replies {
  padding-left: 15px;
  border-left: 3px solid #ddd;
}

.reply {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f1f1f1;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 14px;
}

.reply-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 6px;
}
.joe-brand {
      color: #2a5298;
      font-weight: bold;
      text-transform: uppercase;
    }
    .write-feedback-btn {
      display: block;
      margin: 30px auto;
      background-color: #2a5298;
      color: white;
      padding: 12px 20px;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
    }

	

	 #tour-feedback-form {
    max-width: 600px;
    margin: 40px auto;
    background: rgba(0, 0, 255, 0.523);
    padding: 30px;
	display: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
  }

  #tour-feedback-form input,
  #tour-feedback-form textarea {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 12px;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.3s;
  }

  #tour-feedback-form input:focus,
  #tour-feedback-form textarea:focus {
    border-color: #0022a8;
    outline: none;
  }

  #tour-feedback-form input[type="file"] {
    padding: 8px;
    font-size: 14px;
    background: #f0f0f076;
  }

  #uploadedPreview {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    display: none;
    margin: 15px auto;
    border: 3px solid none;
  }

  #tour-feedback-form label {
    display: block;
    margin: 15px 0 5px;
    font-size: 14px;
  }

  #tour-feedback-form label input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 8px;
  }

  #submit-feedback-btn {
    width: 100%;
    background-color: blue;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 20px;
  }

  #submit-feedback-btn:hover {
    background-color: blue;
  }

  @media (max-width: 500px) {
    #tour-feedback-form {
      padding: 20px;
    }
  }

  rating-block {
  text-align: center;
  margin: 25px 0;
}

.rating-title {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.rating-stars {
  direction: rtl;
  unicode-bidi: bidi-override;
  display: flex;
  justify-content: center;
  gap: 10px; /* spacing between stars */
}

.rating-stars input {
  display: none;
}

.rating-stars label {
  font-size: 5rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0 5px;
}

.rating-stars input:checked ~ label,
.rating-stars label:hover,
.rating-stars label:hover ~ label {
  color: gold;
}

.rating-text {
  margin-top: 10px;
  font-size: 1rem;
  color: #444;
}

