.rtgbtn {
    background-color: #38ab5a;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: 6px; /* Smooth rounded corners */
    display: inline-flex; /* Aligns icon & text properly */
    align-items: center;
    justify-content: center;
    gap: 8px; /* Space between icon & text */
    /* transition: all 0.3s ease-in-out; */
}

.rtgbtn:hover {
    background-color: #288243;
    color: #fff;
    text-decoration: none;
	box-shadow: none;
	transition: all 0.3s ease-in-out;
}

.rtgbtn i {
    margin: 0;
    font-size: 18px; /* Adjust icon size */
    transition: transform 0.3s ease-in-out;
	color: #b00606;
}

.rtgbtn.timer{
	color: #000;
	background: none;
	transition: none;
	font-size: 18px;
	pointer-events: none;
	box-shadow: none;
}
.rtgbtn b{
  color: #4298b5;
  font-size: 18px;
}
.dbtn {
	display: flex;
	justify-content: center;
}
@media screen and (max-width: 600px) {
	.rtgbtn {
    padding: 12px;
  }
	.drtgbtn.timer {
    font-size: 1em;
    padding: 6px;
  }
	.rtgbtn .icon {
    font-size: 1.5rem;
  }
	.rtgbtn .text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 400px) {
	.rtgbtn {
    padding: 10px;
  }

	.rtgbtn.timer {
    font-size: 0.9em;
    padding: 4px;
  }

	.rtgbtn .icon {
    font-size: 1.2rem;
  }

	.rtgbtn .text {
	font-size: 1rem;
  }
}
.success-box {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid Lightgray;
	padding: 5px;
	background: #fff;
	max-width: 100%; /* Increased width to accommodate the content */
	margin: 0 auto;
}
.success-icon {
	background-image: url("../images/success-icon.gif");
	width: 65px;
	height: 65px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.text-container {
	flex: 1; /* Expands to fill remaining space */
	margin-right: 10px;
	background: #fff;
	padding: 10px;
}
.success-text {
	font-weight: bold;
	margin-right: 15px;
}
.download-again-button {
	padding: 10px 20px;
	margin: 0 5px;
	cursor: pointer;
	background: #000;
	color: #fff;
	border: none;
	border-radius: 5px;
	transition: background-color 0.2s ease;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
	font-size: 14px; /* Decreased text size */
}
.download-again-button:hover {
	background: #38ab5a;
}
@media (max-width: 768px) {
.success-box {
	display: flex;
	flex-direction: column;
	align-items: center; 
	justify-content: center;
	border: 1px dotted Lightgray;
	background: #fff;
}
.success-icon {
	background-image: url("../images/success-icon.gif");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.success-text {
	font-weight: bold;
	margin: 0px;
	font-size: 18px;
	padding: 10px 5px;
}
.download-again-button {
	padding: 8px 8px;
	margin: 5px 5px;
	cursor: pointer;
	background: #38ab5a;
	color: #fff;
	border: none;
	border-radius: 5px;
	transition: background-color 0.2s ease;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
	font-size: 14px; /* Decreased text size */
}
.download-again-button:hover {
	background: #288243;
}
}