.product_rev .top-row {
	display: grid;
	grid-template-columns: 1fr 2fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}

.product_rev .card {
	background: white;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	border: 1px solid #e9ecef;
}

/* Recommendation Card */
.product_rev .recommendation-card {
	text-align: center;
}

.product_rev .percentage-circle {
	width: 120px;
	height: 120px;
	margin: 0 auto 20px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product_rev .circle-bg {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 8px solid #e9ecef;
	position: relative;
}

.product_rev .circle-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 8px solid transparent;
	border-top-color: #28a745;
	border-right-color: #28a745;
	border-bottom-color: #28a745;
	transform: rotate(45deg);
}

.product_rev .percentage-text {
	position: absolute;
	font-size: 32px;
	font-weight: bold;
	color: #28a745;
}

.product_rev .recommendation-text {
	font-size: 16px;
	color: #666;
	font-weight: 500;
}

/* Overall Score Card */
.product_rev .overall-score {
	text-align: center;
}

.product_rev .score-number {
	font-size: 40px;
	font-weight: bold;
	color: #333;
}

.product_rev .score-number span {
	font-size: 24px;
	color: #666;
}

.product_rev .star {
	color: #ffc107;
	font-size: 20px;
}

.product_rev .star.empty {
	color: #e9ecef;
}

.product_rev .reviews-count {
	color: #666;
	font-size: 14px;
}

.product_rev .rating-bars {
	margin-top: 5px;
}

.product_rev .rating-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.product_rev .rating-label {
	font-size: 14px;
	color: #666;
	min-width: 120px;
}

.product_rev .rating-bar {
	flex: 1;
	height: 8px;
	background: #e9ecef;
	border-radius: 4px;
	margin: 0 15px;
	overflow: hidden;
}

.product_rev .rating-fill {
	height: 100%;
	background: #007bff;
	border-radius: 4px;
}

.product_rev .rating-score {
	font-weight: 600;
	font-size: 14px;
	min-width: 40px;
}

/* Review Product Card */
.product_rev .review-product {
	text-align: center;
}

.product_rev .review-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 15px;
}

.product_rev .review-subtitle {
	color: #666;
	margin-bottom: 25px;
	line-height: 1.4;
}

.product_rev .add-review-btn {
	background: transparent;
	border: 2px solid #007bff;
	color: #007bff;
	padding: 12px 30px;
	border-radius: 25px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.product_rev .add-review-btn:hover {
	background: #007bff;
	color: white;
}

/* User Review Card */
.product_rev .user-review {
	margin-top: 20px;
}

.product_rev .review-header {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 20px;
}

.product_rev .user-avatar {
	width: 50px;
	height: 50px;
	background: #1e3a8a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 15px;
	font-weight: bold;
}

.product_rev .review-info {
	flex: 1;
}

.product_rev .user-name {
	font-weight: 600;
	margin-bottom: 5px;
}

.product_rev .verified-badge {
	color: #666;
	font-size: 14px;
	margin-bottom: 5px;
}

.product_rev .review-date {
	color: #999;
	font-size: 12px;
}

.product_rev .review-rating {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.product_rev .review-title-text {
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 15px;
}

.product_rev .detailed-ratings {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 15px;
}

.product_rev .detailed-rating {
	text-align: center;
	padding: 5px;
	background: #f8f9fa;
	border-radius: 8px;
}

.product_rev .detailed-rating-label {
	font-size: 12px;
	color: #666;
}

.product_rev .detailed-rating-score {
	font-weight: 600;
	margin-bottom: 5px;
}

.product_rev .recommendation-score {
	background: #e3f2fd;
	padding: 10px;
	border-radius: 8px;
	text-align: center;
}

.product_rev .recommendation-score-label {
	font-size: 12px;
	color: #666;
	margin-bottom: 5px;
}

.product_rev .recommendation-score-value {
	font-weight: bold;
	color: #1976d2;
}

@media (max-width: 768px) {
	.product_rev .top-row {
		grid-template-columns: 1fr;
	}
	
	.product_rev .detailed-ratings {
		grid-template-columns: repeat(2, 1fr);
	}
}


/*Order List For User Review Start*/

  .orderuserreview table {
    width: 95%;
    margin: 0 auto;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: #fff;
  }

  .orderuserreview th, td {
    padding: 15px;
    text-align: left;
    vertical-align: top;
  }

  .orderuserreview thead {
    background-color: #4CAF50;
    color: white;
  }

  .orderuserreview tbody tr:nth-child(even) {
    background-color: #f9f9f9;
  }

  .orderuserreview tbody tr:hover {
    background-color: #f1f1f1;
  }

  .orderuserreview th {
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .orderuserreview .badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    color: white;
    font-size: 0.8em;
  }

  .orderuserreview .badge-pending { background-color: #f0ad4e; }
  .orderuserreview .badge-completed { background-color: #5cb85c; }
  .orderuserreview .badge-cancelled { background-color: #d9534f; }

  /* Review form styling */
  .orderuserreview .review-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .orderuserreview .review-form label {
    font-size: 0.9em;
    font-weight: bold;
  }

  .orderuserreview .review-form select, .review-form textarea {
    padding: 5px 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 0.9em;
    width: 100%;
  }

  .orderuserreview .review-form textarea {
    resize: none;
  }

  .orderuserreview .review-form button {
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    font-size: 0.9em;
    align-self: flex-start;
  }

  .orderuserreview .review-form button:hover {
    background-color: #45a049;
  }


/*Order List For User Review End*/