 .upgrade-dialog-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.upgrade-dialog-box {
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	width: 70%;
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
}

.close-upgrade-dialog {
	position: absolute;
	top: 10px;
	right: 20px;
	font-size: 24px;
	cursor: pointer;
}


.upgrade-container {
    margin-bottom: 20px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
  }

  .upgrade-container .icon {
    font-size: 48px;
    color: #ff9800;
  }

  .upgrade-container h2 {
    font-size: 24px;
    margin: 0 0 10px;
    color: #333;
  }

  .upgrade-container p {
    font-size: 16px;
    color: #666;
  }