.ufs-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ufs-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 400px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.ufs-modal-content h2 {
  margin-top: 0;
}
.ufs-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    margin-left: 39%;
}
#ufs-skip{
    border: none;
    color: #e4e4e4;
    background: none;
    outline-color: #fff;
    padding: 0px;
    line-height: 0px;
    font-size: 11px;
}

#ufs-skip:hover{
	text-decoration: underline;
	cursor: default;
}

/* Loading Overlay */
.ufs-loading-overlay {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(255,255,255,0.9);
	z-index: 100000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: #333;
}
.ufs-spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #ccc;
	border-top: 4px solid #0073aa;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 12px;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}