/*************************************************/
/* AUTH CSS */
body {
	min-height: 100vh;
	display: flex;
    flex-direction: column;
	background-color: #f7f6f7 !important;
}

* {
	font-family: Helvetica, serif;
}

.page-container {
	/*padding: calc(50vh - 300px) 0 100px;*/
	padding-top: 10px;
	margin: auto 0;
}

.page-container * {
	margin: 0;
	/*padding: 0;*/
	text-decoration: none;
	box-sizing: border-box;
}

.auth-form {
	box-shadow: rgba(0, 0, 0, 0.4) 0 5px 15px;
	width: 400px;
	background: #fff;
	padding: 20px 40px;
	border-radius: 12px;
	position: relative;
	z-index: 0;
	margin: 0 auto;
}

.login-form,.register-form,.forgot-pwd-form { padding-botttom:1px;}

.confirmation-form {
  	box-shadow: rgba(0, 0, 0, 0.4) 0 5px 15px;
  	width: 400px;
	height: 420px;
	background: #fff;
	padding: 20px 40px;
	border-radius: 12px;
	position: relative;
	z-index: 0;
	margin: 0 auto;
	text-align: center;
}

.result-form {
	box-shadow: rgba(0, 0, 0, 0.4) 0 5px 15px;
  	width: 400px;
	min-height: 300px;
	background: #fff;
	padding: 20px 40px;
	border-radius: 12px;
	position: relative;
	z-index: 0;
	margin: 0 auto;
	text-align: center;
}

.claim-form {
  	width: 600px;
	/*height: 300px;*/
}

form .title {
	text-align: center;
	margin-bottom: 10px;
	font-size: 1.25em;
}

.img-container {
	text-align: center;	
	margin-bottom: 20px;
}

.img-container .logo {
	height: 70px;
	max-width: 240px;
	object-fit: contain!important;
}

.auth-input {
	border-bottom: 2px solid #adadad;
	position: relative;
	margin: 25px 0;
}

.pwd-group {
    position: relative;
    display: flex!important;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.auth-input label {
	display: none;
}

.auth-input .form-input {
	font-size: 15px;
	color: #333;
	width: 100%;
	border: none;
	outline: none;
	background: none;
	padding: 0 5px;
	height: 40px;    
}

.auth-input #password {
 	position: relative;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;   
}

.auth-input span::before {
	content: attr(data-placeholder-1);
	position: absolute;
	top: 50%;
	left: 5px;
	color: #adadad;
	transform: translateY(-50%);
	z-index: -1;
	transition: 0.5s;
}

.auth-input span::after {
	content: '';
	width: 0;
	height: 2px;
	position: absolute;
	top: 100%;
	left: 0;
	background: #63C680;
	transition: 0.5s;
}

.focused + span::before {
	content: attr(data-placeholder-2);
	top: -10px;
	font-size: 11px;
	color: #63C680;
	font-weight: 500;
}

.focused + span::after {
	width: 100%;
}

/* .input-group { */
/*     position: relative; */
/*     display: flex; */
/*     flex-wrap: wrap; */
/*     align-items: stretch; */
/*     width: 100%; */
/* } */

/* .form-control { */
/*     position: relative; */
/*     flex: 1 1 auto; */
/*     width: 1%!important; */
/*     min-width: 0; */
/* } */

.btn-eye {
	opacity: 1;
	background: 0 0;
	border: 0;
	
    font-size: 14px;
    width: 2.5rem;
    height: 2.5rem;
    min-width: 40px;
    min-height: 40px;
    margin: 0;
    padding: 5px 9px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}



.submit-button {
	display: block;
	width: 100%;
	height: 50px;
	border: none;
	background-color: rgba(99, 198, 128, 0.8);
	background-size: 200%;
	color: #fff;
	outline: none;
	cursor: pointer;
	transition: 0.5s;
	font-size: 16px;
	margin-bottom: 30px;	
}

.submit-button:hover {
	background-color: rgba(99, 198, 128, 1);
}


.or-text {
	text-align: center;
	margin: 20px 0;
	font-weight: bold;
	color: #666;
	cursor: default;
}

.forgot-pwd-text {
	text-align: end;
	font-size: 14px;
	margin-bottom: 10px;
}

.sign-up-text {
	text-align: center;
	font-size: 16px;
	margin-top: 30px;
}

.sign-in-text {
	text-align: center;
	font-size: 16px;
	margin-top: 30px;
}


.sign-up-text a, .forgot-pwd-text a, .sign-in-text a {
	color: #26218a;
	font-weight: 500;
}

.sign-up-text a:hover, .forgot-pwd-text a:hover, .sign-in-text a:hover {
	text-decoration: underline;
}

.forgot-pwd-text .forgotpwd, .sign-up-text .signup, .sign-in-text .signin {
	display: block;
	color: #6E6E6E;
}

.alert-text {
	text-align: center;
	font-size: 14px;
	position: relative;
	z-index: 0;
	margin: 0 auto 20px;
	border: 1px solid;
	border-radius: 12px;
	visibility: hidden;
	
	width: 400px;
    padding: 12px;
    background-color: #fff;
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
    word-wrap: break-word;
}

.alert-icon {
	margin-right: 10px;
}

@media screen and (max-width: 375px) {
	.login-form {
		width: 320px;
	}
	.register-form {
		width: 320px;
	}
}

.highlight {
	font-weight: bold;
}
/* END AUTH CSS */
/*************************************************/











a {
	cursor: pointer;
}


.navbar-language-selector-btn {
	border-color: transparent !important;
}

.dropdown-menu-scrollable {
	max-height: 60vh;
	overflow-y: auto;
}

.dropdown-menu-scrollable::-webkit-scrollbar {
	width: 6px;
}

.dropdown-menu-scrollable::-webkit-scrollbar-thumb {
	background-color: #adb5bd;
	border-radius: 3px;
}

/*img.logo {*/
/*	height: 50px;*/
/*	margin: 0;*/
/*	padding: 10px;*/
/*	float: left;*/
/*}*/

#alert_container:empty {
	display: none;
}

.card-std {
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 5px;
}

.card-lg {
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 20px 3%;
}

.card-text {
	margin-bottom: 0;
}

.old-price {
	text-decoration: line-through;
}

.subscription-card {
	cursor: pointer;
}

.subscription-card:hover {
	border: 1px solid black;
}

/*.card .expandable {*/
/*	max-height: 0;*/
/*	overflow: hidden;*/
/*	transition: max-height 0.5s ease-in-out;*/
/*}*/
/*.card .expandable.expanded {*/
/*	max-height: 500px;*/
/*}*/
.expandable {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-in-out;
}

.expandable.s025 {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease-in-out;
}

.expandable.expanded {
	max-height: 750px;
}

.expandable.expandable-tall.expanded {
	max-height: 3000px;
}

table tr {
	height: 50px;
}

.name-link {
	color: black;
	text-decoration: none;
}

.name-link:hover {
	text-decoration: underline;
}

.w-300px {
	width: 300px !important;
}

.w-240px {
	width: 240px !important;
}

.w-160px {
	width: 160px !important;
}

.w-lg {
	width: 140px !important;
}

.w-md {
	width: 120px !important;
}

.w-sm {
	width: 100px !important;
}

.btn-cancel {
	background-color: transparent;
	border-color: transparent;
	color: #646464;
}

.btn-cancel:hover {
	border-color: #646464 !important;
	color: #646464;
}

/*.btn-cancel-danger {*/
/*	background: #f8d7da;*/
/*	border-color: transparent;*/
/*	color: #8592a3;*/
/*}*/
/*.btn-cancel-danger:hover {*/
/*	!*border-color: #721c24 !important;*!*/
/*	border-color: rgb(194, 47, 61) !important;*/
/*	color: rgb(194, 47, 61) !important;*/
/*}*/
.danger-cancel-link {
	color: rgb(108, 117, 125);
	text-decoration: none;
	text-underline-offset: 0.375em;
	font-size: 0.9em;
	transition: color 0.15s ease-in-out;
}

.danger-cancel-link:hover {
	color: rgb(194, 47, 61);
}

#plans_container {
	margin-left: -1rem;
	margin-right: -1rem;
	margin-top: 10px;
}

.stat-box {
	background: #fff;
	padding: 15px;
}

.border-color1 {
	/* background:rgb(217, 110, 110); */
	border: 2px solid rgb(217, 110, 110) !important;
	/* box-shadow: 1px 3px 3px rgba(217, 110, 110, 0.541); */
}

.border-color2 {
	border: 2px solid rgb(172, 217, 110) !important;
}

.border-color3 {
	border: 2px solid rgb(110, 217, 213) !important;
}

.border-color4 {
	border: 2px solid rgb(135, 110, 217) !important;
}

.border-color5 {
	border: 2px solid rgb(217, 110, 110) !important;
}

.border-color6 {
	border: 2px solid rgb(110, 171, 217) !important;
}

.stat-box .title {
	font-weight: 600;
	text-align: center;
}

.stat-box .value {
	font-size: 42px;
	word-break: break-all;
	text-align: center;
}

button.payment {
	width: 100%;
	height: 50px;
	border-radius: 32px;
}

button.paypal {
	padding: 10px;
	background: #F8C557;
}

button.paypal:hover {
	background: #ECBB53;
}

button.credit-card {
	background: #2C2E2F;
	color: #fff;
}

button.credit-card:hover {
	background: #353738;
	color: #fff;
}

button.free {
	background: #fff;
	border: 1px solid #000;
	color: #000;
}

button.free:hover {
	background: #000;
	color: #fff;
}

a.payment {
	width: 100%;
	height: 50px;
	border-radius: 32px;
}

a.paypal {
	padding: 10px;
	background: #F8C557;
}

a.paypal:hover {
	background: #ECBB53;
}

a.credit-card {
	background: #2C2E2F;
	color: #fff;
}

a.credit-card:hover {
	background: #353738;
	color: #fff;
}

#date_range_picker {
	background: #fff;
	cursor: pointer;
	padding: 5px 15px;
	border: 1px solid #ccc;
	/*width: fit-content;*/
	width: 380px;
}

.card-auth {
	box-shadow: rgba(0, 0, 0, 0.4) 0px 5px 15px;
	border-radius: 12px;
}

.flexy-consent-color {
	color: rgb(99, 198, 128);
}

#script_content_area {
	width: 100%;
	height: 40vh;
}

.no-projects-link {
	display: block !important;
	text-align: center;
}

/*.domains-sizeable {
	width: 390px;
}

.name-sizeable {
	width: 210px;
}
*/

.tspacing {
	margin-top: 20px;
}

.box-buttton {
	/*position: absolute;*/ /*left: 10px;*/ /*right: 10px;*/
	/*bottom: 10px;*/
	width: 100%;
}

.bottom-spaced-box {
	margin-bottom: 52px;
}

.bottom-spaced-box ul {
	margin-top: 10px;
	padding-left: 16px
}

.info-message {
	color: #DD1121;
	font-weight: bold;
}

.reseller-text {
	width: 100%;
}

textarea.reseller-text {
	height: 200px;
}

#resellersettings_table tr td:nth-child(1){
	max-width: 210px;
}
#smtpsettings_table tr td:nth-child(1){
	/*max-width: 153px;*/
}

#smtpsettings_table input[type=text] {
	width: 25vw;
}

#resuser_table tr td:nth-child(1), 
  #reseller_users_table tr td:nth-child(1), #pwd_table tr td:nth-child(1){
	max-width: 43px;
}

.reseller-package-info {
    font-size: small;
    font-weight: bold;
}

.update-code-info { 
	font-weight: bold;
	color: #DD1121;
	font-size: smaller;
}

.error-text { 
	font-weight: bold;
	color: #DD1121;
	font-size: smaller;
}

footer {
	/*position: absolute;*/
	bottom: 0;
	width: 100%;
	
	height: 80px;
	font-size: 14px;
	display: flex;
	justify-content: center;
	/*position: fixed;*/
  	left: 0;
  	margin-top: auto;
}

.footer-row {
	display: flex;
	justify-content: center;
	align-items: center;
}

.copyright-text {
	margin-right: 20px;
	width: auto;
	color: #999;
}

.terms {
	width: auto;
	list-style: none;
	padding: 0;
	display: inline-block;
	justify-content: center;
	margin-bottom: 0;
}

.terms li {
	float: left;
	margin: 0 20px;
}

footer a {
	text-decoration: none;
	color: #999;
}

span a:hover {
	text-decoration: underline;
}

.daterangepicker {
    position: absolute;
    color: inherit;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #ddd;
    width: 278px;
    max-width: none;
    padding: 0;
    margin-top: 7px;
    top: 100px;
    left: 20px;
    z-index: 3001;
    display: none;
    font-family: arial;
    font-size: 15px;
    line-height: 1em;
}

.daterangepicker:before, .daterangepicker:after {
    position: absolute;
    display: inline-block;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    content: '';
}

.daterangepicker:before {
    top: -7px;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 7px solid #ccc;
}

.daterangepicker:after {
    top: -6px;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    border-left: 6px solid transparent;
}

.daterangepicker.opensleft:before {
    right: 9px;
}

.daterangepicker.opensleft:after {
    right: 10px;
}

.daterangepicker.openscenter:before {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto;
}

.daterangepicker.openscenter:after {
    left: 0;
    right: 0;
    width: 0;
    margin-left: auto;
    margin-right: auto;
}

.daterangepicker.opensright:before {
    left: 9px;
}

.daterangepicker.opensright:after {
    left: 10px;
}

.daterangepicker.drop-up {
    margin-top: -7px;
}

.daterangepicker.drop-up:before {
    top: initial;
    bottom: -7px;
    border-bottom: initial;
    border-top: 7px solid #ccc;
}

.daterangepicker.drop-up:after {
    top: initial;
    bottom: -6px;
    border-bottom: initial;
    border-top: 6px solid #fff;
}

.daterangepicker.single .daterangepicker .ranges, .daterangepicker.single .drp-calendar {
    float: none;
}

.daterangepicker.single .drp-selected {
    display: none;
}

.daterangepicker.show-calendar .drp-calendar {
    display: block;
}

.daterangepicker.show-calendar .drp-buttons {
    display: block;
}

.daterangepicker.auto-apply .drp-buttons {
    display: none;
}

.daterangepicker .drp-calendar {
    display: none;
    max-width: 270px;
}

.daterangepicker .drp-calendar.left {
    padding: 8px 0 8px 8px;
}

.daterangepicker .drp-calendar.right {
    padding: 8px;
}

.daterangepicker .drp-calendar.single .calendar-table {
    border: none;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
    color: #fff;
    border: solid black;
    border-width: 0 2px 2px 0;
    border-radius: 0;
    display: inline-block;
    padding: 3px;
}

.daterangepicker .calendar-table .next span {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.daterangepicker .calendar-table .prev span {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    min-width: 32px;
    width: 32px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}

.daterangepicker .calendar-table {
    border: 1px solid #fff;
    border-radius: 4px;
    background-color: #fff;
}

.daterangepicker .calendar-table table {
    width: 100%;
    margin: 0;
    border-spacing: 0;
    border-collapse: collapse;
}

.daterangepicker td.available:hover, .daterangepicker th.available:hover {
    background-color: #eee;
    border-color: transparent;
    color: inherit;
}

.daterangepicker td.week, .daterangepicker th.week {
    font-size: 80%;
    color: #ccc;
}

.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
    background-color: #fff;
    border-color: transparent;
    color: #999;
}

.daterangepicker td.in-range {
    background-color: #ebf4f8;
    border-color: transparent;
    color: #000;
    border-radius: 0;
}

.daterangepicker td.start-date {
    border-radius: 4px 0 0 4px;
}

.daterangepicker td.end-date {
    border-radius: 0 4px 4px 0;
}

.daterangepicker td.start-date.end-date {
    border-radius: 4px;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #357ebd;
    border-color: transparent;
    color: #fff;
}

.daterangepicker th.month {
    width: auto;
}

.daterangepicker td.disabled, .daterangepicker option.disabled {
    color: #999;
    cursor: not-allowed;
    text-decoration: line-through;
}

.daterangepicker select.monthselect, .daterangepicker select.yearselect {
    font-size: 12px;
    padding: 1px;
    height: auto;
    margin: 0;
    cursor: default;
}

.daterangepicker select.monthselect {
    margin-right: 2%;
    width: 56%;
}

.daterangepicker select.yearselect {
    width: 40%;
}

.daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.secondselect, .daterangepicker select.ampmselect {
    width: 50px;
    margin: 0 auto;
    background: #eee;
    border: 1px solid #eee;
    padding: 2px;
    outline: 0;
    font-size: 12px;
}

.daterangepicker .calendar-time {
    text-align: center;
    margin: 4px auto 0 auto;
    line-height: 30px;
    position: relative;
}

.daterangepicker .calendar-time select.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.daterangepicker .drp-buttons {
    clear: both;
    text-align: right;
    padding: 8px;
    border-top: 1px solid #ddd;
    display: none;
    line-height: 12px;
    vertical-align: middle;
}

.daterangepicker .drp-selected {
    display: inline-block;
    font-size: 12px;
    padding-right: 8px;
}

.daterangepicker .drp-buttons .btn {
    margin-left: 8px;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
}

.daterangepicker.show-ranges.single.rtl .drp-calendar.left {
    border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.single.ltr .drp-calendar.left {
    border-left: 1px solid #ddd;
}

.daterangepicker.show-ranges.rtl .drp-calendar.right {
    border-right: 1px solid #ddd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
    border-left: 1px solid #ddd;
}

.daterangepicker .ranges {
    float: none;
    text-align: left;
    margin: 0;
}

.daterangepicker.show-calendar .ranges {
    margin-top: 8px;
}

.daterangepicker .ranges ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.daterangepicker .ranges li {
    font-size: 12px;
    padding: 8px 12px;
    cursor: pointer;
}

.daterangepicker .ranges li:hover {
    background-color: #eee;
}

.daterangepicker .ranges li.active {
    background-color: #08c;
    color: #fff;
}

/*  Larger Screen Styling */
@media (min-width: 564px) {
    .daterangepicker {
        width: auto;
    }

    .daterangepicker .ranges ul {
        width: 140px;
    }

    .daterangepicker.single .ranges ul {
        width: 100%;
    }

    .daterangepicker.single .drp-calendar.left {
        clear: none;
    }

    .daterangepicker.single .ranges, .daterangepicker.single .drp-calendar {
        float: left;
    }

    .daterangepicker {
        direction: ltr;
        text-align: left;
    }

    .daterangepicker .drp-calendar.left {
        clear: left;
        margin-right: 0;
    }

    .daterangepicker .drp-calendar.left .calendar-table {
        border-right: none;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .daterangepicker .drp-calendar.right {
        margin-left: 0;
    }

    .daterangepicker .drp-calendar.right .calendar-table {
        border-left: none;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .daterangepicker .drp-calendar.left .calendar-table {
        padding-right: 8px;
    }

    .daterangepicker .ranges, .daterangepicker .drp-calendar {
        float: left;
    }
}

@media (min-width: 730px) {
    .daterangepicker .ranges {
        width: auto;
    }

    .daterangepicker .ranges {
        float: left;
    }

    .daterangepicker.rtl .ranges {
        float: right;
    }

    .daterangepicker .drp-calendar.left {
        clear: none !important;
    }
}

@media  screen and (max-width: 991px) {
	#navbarNav .navbar-nav {
		justify-content: center;
		padding: 0 10px;
	}
	#navbarNav .navbar-nav .nav-link {
		padding: 3px 0;
	}
	.navbar-toggler {
		border: none;
	}
}

.nav-link {
	text-wrap: nowrap;
}

::-webkit-input-placeholder { opacity: 1; -webkit-transition: opacity .5s; transition: opacity .5s; }  /* Chrome <=56, Safari < 10 */
:-moz-placeholder { opacity: 1; -moz-transition: opacity .5s; transition: opacity .5s; } /* FF 4-18 */
::-moz-placeholder { opacity: 1; -moz-transition: opacity .5s; transition: opacity .5s; } /* FF 19-51 */
:-ms-input-placeholder { opacity: 1; -ms-transition: opacity .5s; transition: opacity .5s; } /* IE 10+ */
::placeholder { opacity: 1; transition: opacity .5s; } /* Modern Browsers */
    
*:focus::-webkit-input-placeholder { opacity: 0; } /* Chrome <=56, Safari < 10 */
*:focus:-moz-placeholder { opacity: 0; } /* FF 4-18 */
*:focus::-moz-placeholder { opacity: 0; } /* FF 19-50 */
*:focus:-ms-input-placeholder { opacity: 0; } /* IE 10+ */
*:focus::placeholder { opacity: 0; } /* Modern Browsers */

/* ---- App Modal (replaces native alert/confirm) ---- */
.app-modal-backdrop {
	position: fixed; inset: 0; z-index: 9998;
	background: rgba(0,0,0,.35); backdrop-filter: blur(2px);
	opacity: 0; transition: opacity .2s ease;
	display: none;
}
.app-modal-backdrop.show { display: block; opacity: 1; }

.app-modal {
	position: fixed; z-index: 9999;
	top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.95);
	background: #fff; border-radius: 14px;
	box-shadow: 0 8px 32px rgba(0,0,0,.18);
	width: 400px; max-width: calc(100vw - 32px);
	opacity: 0; transition: opacity .2s ease, transform .2s ease;
	display: none; overflow: hidden;
}
.app-modal.show { display: block; opacity: 1; transform: translate(-50%, -50%) scale(1); }

.app-modal-header {
	display: flex; align-items: center; gap: 10px;
	padding: 18px 22px 0;
}
.app-modal-icon {
	width: 36px; height: 36px; border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
}
.app-modal-icon i { font-size: 16px; }
.app-modal-icon.error   { background: #fee2e2; color: #dc2626; }
.app-modal-icon.warning { background: #fef3c7; color: #d97706; }
.app-modal-icon.success { background: #dcfce7; color: #16a34a; }
.app-modal-icon.info    { background: #dbeafe; color: #2563eb; }
.app-modal-icon.confirm { background: #f3e8ff; color: #7c3aed; }

.app-modal-title {
	font-size: 1rem; font-weight: 700; color: #1a1a2e; margin: 0;
}

.app-modal-body {
	padding: 14px 22px 6px; font-size: .9rem; color: #4b5563; line-height: 1.55;
	word-wrap: break-word;
}

.app-modal-footer {
	display: flex; justify-content: flex-end; gap: 8px;
	padding: 14px 22px 18px;
}
.app-modal-btn {
	padding: 8px 20px; border-radius: 8px; font-size: .85rem;
	font-weight: 600; cursor: pointer; border: none;
	transition: background .15s ease, transform .1s ease;
}
.app-modal-btn:active { transform: scale(.97); }
.app-modal-btn-cancel {
	background: #f3f4f6; color: #4b5563;
}
.app-modal-btn-cancel:hover { background: #e5e7eb; }
.app-modal-btn-ok {
	background: rgb(99, 198, 128); color: #fff;
}
.app-modal-btn-ok:hover { background: rgb(79, 178, 108); }
.app-modal-btn-danger {
	background: #dc2626; color: #fff;
}
.app-modal-btn-danger:hover { background: #b91c1c; }

/* Geo Preview tab */
#geopreview_section { padding: 10px; }
#geopreview .card { padding: 10px; }
