


@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700);

html {overflow-x: hidden;}
body {padding:0;margin:0;font-family:Montserrat;background:#f1f1f1;}
	a {text-decoration:none;color:unset;}
div,h1,h2,h3,h4,p,i,a {position:relative;transition:0.4s;}

form,input,textarea,select {font-family:Montserrat;}
:root {
	--color:#848484;
	--color2:#64af35;
}
/*alerts */
div,h1,h2,h3,h4,p,i,a,footer {position:relative;transition:0.4s;}

input,select,textarea,button {font-family: Montserrat;}

a {    text-decoration: unset;
    color: unset;}

input::placeholder {font-size:12px}

/*scroll bar*/
	/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.edit_amount {background: white;
    color: black;
    width: 90%;
    border: 1px solid gray;
    padding: 4px 0px;
    text-align: center;outline:none;}
.alert_full_page {
	height: -webkit-fill-available;
    width: -webkit-fill-available;
    color: black;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.Active {background: #01ce01;
      color: white;
    position: relative;
    border-radius: 5px;
    padding: 5px 14px 7px;
    top: 8px;}
	
.Inactive {background: #e45c5c;
    color: white;
    position: relative;
    border-radius: 5px;
    padding: 5px 14px 7px;
    top: 8px;}	
.alert_full_page h3{}
 .next_btn {      min-width: 100px;
    width: fit-content;
    background: #015fb1;
    padding: 12px 20px;
    color: white;
    margin: 5px auto;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px #00000026;
    text-align: center;
}

.alert {   padding: 23px;
    width: fit-content;
    font-size: 13px;
    margin: 0px auto;
    border-radius: 6px;}
	
.danger {background: #ffd0d082;
    color: #d45050;}
.info {    background: #d0deff82;
    color: #5097d4;
}
.success {background: #cdfabf82;
    color: #46a052;
}	
.clip_path1 {
	clip-path: polygon(100% 0, 40% 100%, 0 100%, 0 58%);
    -webkit-clip-path: polygon(100% 0, 40% 100%, 0 100%, 0 58%);
    position: fixed;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    background: #088bb3;
	background: repeating-linear-gradient(45deg, #3F51B5, transparent 23%), repeating-linear-gradient(-74deg, #9C27B0, transparent 19%), repeating-linear-gradient(5deg, #E91E63, transparent 31%);
	top:0;
	left:0;
}



header {background: white;
    width: -webkit-fill-available;
    padding: 0;
    overflow: hidden;
    position: sticky;
    display: flex;
    padding: 0px;
    top: 0;
    z-index: 22;
    box-shadow: 0px 0px 10px 0px #0000001a;
}
header .logo{    display: flex;
    margin: 0px 20px;}
header .logo h3{color: #231f20;
    margin: 14px -1px 0px;
    font-size: 18px;
    font-weight: 600;
    width: 150px;}
header .logo img{  width: auto;
    height: 34px;
    margin: 16px;}


	header .head_txt h3 img {    border-radius: 50px;
    width: 50px;
    height: 50px;
    position: relative;
    border: 1px solid #ffffff;
    top: -16px;
}




	
header .head_txt h3:hover {
	transition:0.3s;color:black;
}	

.btn_3 {background: #8BC34A;
    color: white;
    padding: 7px 10px;
    width: fit-content;
    margin: 1px auto;
    font-size: 12px;
    border-radius: 3px;}

.mobile_home {display:none;}


/* --- Franchisee Login Portal Styling --- */

/* Centers the form on the screen */
.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh; 
    padding: 20px;
    background-color: #f4f7f6; /* Soft background to make the white card pop */
    font-family: inherit;
}

/* Main Form Card */
.auth-form {
    background: #ffffff;
    max-width: 420px;
    width: 100%;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #e43737; 
    text-align: center;
    box-sizing: border-box;
}

/* Headings */
.auth-form h1 {
    font-size: 24px;
    font-weight: 700;
    color: #021314; 
    margin: 0 0 10px 0;
    text-transform: capitalize;
}

/* Subtext */
.auth-form p {
    font-size: 14px;
    color: #666666;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

/* Input Fields */
.auth-form input[type="text"],
.auth-form input[type="password"],
.auth-form input[type="email"] {
    width: 100%;
    padding: 14px 15px;
    margin-bottom: 15px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    background-color: #fdfdfd;
    font-size: 15px;
    color: #333;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Input Focus States */
.auth-form input[type="text"]:focus,
.auth-form input[type="password"]:focus,
.auth-form input[type="email"]:focus {
    border-color: #e43737;
    outline: none;
    box-shadow: 0 0 0 3px rgba(228, 55, 55, 0.1);
}

/* Submit Button */
.auth-form input[type="submit"] {
    width: 100%;
    background-color: #e43737; 
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.auth-form input[type="submit"]:hover {
    background-color: #021314; 
    box-shadow: 0 4px 10px rgba(2, 19, 20, 0.2);
    transform: translateY(-2px);
}

.auth-form input[type="submit"]:active {
    transform: translateY(0);
}

/* Bottom Links Container */
.form-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eeeeee;
    padding-top: 20px;
    gap: 10px;
}

/* Link Styling */
.auth-form a {
    color: #021314; 
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-form a:hover {
    color: #e43737; 
}

.main2 {
margin: 13px;
    background: white;
    padding: 50px;
    box-shadow: 0px 0px 10px 0px #80808036;
    border-radius: 10px;	
}
.btn_create {
	       width: fit-content;
    color: white;
    padding: 10px;
    border-radius: 4px;
    margin: 10px;
    font-weight: 500;
    font-size: 13px;
    background: #4CAF50;
    display: inline-block;
}


.my_account_form {    padding: 0px 30px;}
.my_account_form h3{font-size: 20px;
    font-weight: 400;
    text-align: center;
    border-bottom: 2px solid #636363;
    padding: 0px 10px 10px;
    width: fit-content;
    margin: 14px auto 21px;}
.my_account_form img {  width: 100px;
    max-height: 150px;
    border: 2px solid #00000024;
    margin: 10px auto 20px;
    border-radius: 100%;
    position: relative;
    left: 50%;
    transform: translate(-50%, 10px);}

.input_area p{position: absolute;
    font-size: 10px;
    top: -28px;
    left: 0px;}
.input_area {    width: 300px;
    padding: 0px;
    margin: 17px 10px;
    display: inline-block;
    border: 1px solid #0000002b;
    background: #0000000a;
    border-radius: 4px;}
.input_area input {background: transparent;
    border: 0px;
    padding: 10px;
    margin: 0px;
    width: -webkit-fill-available;
    
}
.input_area textarea{    background: none;
    width: -webkit-fill-available;
    border: 0px;
    min-height: 200px;white-space: pre;}


.container {    background: white;
    margin: 15px;
    padding: 0px 0px 35px;
    min-height: -webkit-fill-available;
    box-shadow: 0px 0px 10px 0px #0000001f;
    height: 600px;
    overflow: auto;
}

.container h2 {color: #03A9F4;
    margin: -6px 0px 5px;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    letter-spacing: -1px;}

 .card_row{background: linear-gradient(45deg, #3F51B5, #03A9F4);
    margin: 0px;
    padding: 0px;
    display: flex;
    box-shadow: 0px 0px 10px 0px #0000001f;
    width: -webkit-fill-available;
    color: white;
    font-weight: 300;
    position: sticky;
    top: 0;
    z-index: 2;}
 .card_row p{    width: -webkit-fill-available;
    text-align: center;
    padding: 7px;
    margin: 0px;
    font-size: 13px;}
	
	.card_row2 {display: flex;}
	.card_row2 p{ margin: 0px;
    width: -webkit-fill-available;
    text-align: center;
    padding: 2px;
    font-size: 12px;
    font-weight: 500;
    overflow: auto;}
	.card_row2 p i{width: auto;
    display: inline-block;
    border: 1px solid #dedede;
    padding: 6px 8px;
    font-weight: 500;
    margin: 0px 4px;border-radius:4px;}

.container2 {
    background: white;
    margin: 15px;
    padding: 0px 0px 35px;
    min-height: 500px;
    box-shadow: 0px 0px 10px 0px #0000001f;
    height: auto;
}
.container2 h1 {
  background: #03A9F4;
    color: white;
    margin: 0;
    font-weight: 400;
    padding: 10px 3%;
    font-size: 20px;
}

 
 	
	#alert_display_full {
		display:none;
		top: 0;
    position: fixed;
    background: #000000b8;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    z-index: 99999;
    left: 0;
}
#alert_display_full h3 {    margin: 7px auto;
    width: fit-content;
    font-weight: 500;
    color: white;
    font-size: 25px;}
#loader1 {width: 50px;
    height: 50px;
    border: 10px solid #ffffff;
    border-radius: 100%;
    margin: 16% auto 0px;
    border-bottom: 10px solid gray;
    position: relative;
    animation: loader1 3s linear infinite;
}


@keyframes loader1 {
	0%{transform:rotate(0deg);}
	100%{transform:rotate(360deg);}
}


/*pagination*/
	.pagination {
      display: flex;
    margin: 0px auto 10px;
    position: relative;
    background: white;
    width: fit-content;
    text-align: center;
    padding: 11px;
    
	}
	.page_btn {background: #b1b1b1;
    margin: 2px;
    padding: 7px 15px;
    color: white;
    font-size: 17px;
    box-shadow: 0px 0px 10px 0px #00000038;
    border-radius: 3px;
    font-weight: 600;}
	.pagination .active{   background: #5097d4;}
	.share_wtsp form{    display: flex;
    margin: 14px auto 20px;
    position: relative;
    width: fit-content;}
	.wtsp_share_btn  {background: #1aab2c;
    font-size: 12px;
    padding: 10px;cursor:pointer}
	.wtsp_share_btn i {}
	
	
	.share_box .close { font-size: 47px;
    text-align: end;
    padding: 0px 10px;
    font-weight: 400;
    color: red;}
	
	#whatsapp2 {background:#1aab2c;color:white}
	.fa-comment-dots	 {background: #1cbdff;
    color: white;}
	.share_box .close i {}
	.share_box {display:none;background: white;
    color: black;
    position: fixed;
    top: 10%;
    width: 351px;
    padding: 10px;
    box-shadow: 0px 0px 10px 0px #00000033;
    z-index: 3;
    border-radius: 11px;}
	.shar_btns {    width: 100px;
    text-align: center;
    display: inline-block;}
	.shar_btns i{padding: 10px;
    border-radius: 8px;}
	.shar_btns p{font-size: 10px;}
	/*customer card preview*/
	
	
	#qr_code_d {left: 50%;
    position: relative;
    transform: translate(-50%, 0px);
    margin: 0px 0px 24px;
}




/*card_manager*/
/*dashboard  csss*/

.dashboard {
    display: grid;
    grid-template-columns: 25% auto;
    min-height: 570px;}
.dash_side1 {color: #9E9E9E;
    background: white;
    font-size: 13px;
    box-shadow: 0px 0px 10px 0px #3e3e3e1f;
}

.dash_side1 .account_details{background: gray;
    border-radius: 0px;
    
    height: 150px;
    overflow: hidden;
    margin: 0px;
    padding: 0px;
    position: relative;}
.dash_side1 .account_details img {    width: 83px;
    border-radius: 100px;
    margin: 8px;
    left: 0%;
    position: relative;}
.dash_side1 .account_details p{margin: 2px 10px;
    font-size: 11px;}
.dash_side1 .dash_link{      margin: 0px 0px;
    color: black;}
.dash_side1 .dash_link li{    border: 0px solid;
    margin: 10px 0px;
    font-size: 15px;
    padding: 10px;
    font-weight: 500;
    border-radius: 0px;
    list-style-type: none;
    border-bottom: 1px dashed #dcd9d9;}
	
	.dash_side1 .dash_link li.active {
		background: #03A9F4;
    color: white;
    border-radius: 16px;
	}
	
	.dash_side1 .dash_link li:hover {
		background: #03A9F4;
    color: white;
    border-radius: 16px;transition:0.3s;
	}
.dash_side2 {}
.dash_side2 .das_box{     background: white;
    width: 150px;
    margin: 10px 6px;
    padding: 19px 21px;
    border-radius: 2px;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    display: inline-block;
    box-shadow: 0px 0px 10px 0px #00000014;

}
.dash_side2 .das_box h3 {}
.dash_side2 .das_box i {}
.dash_side2 .das_box p {font-weight: 500;}
.dash_side2 h2{text-align: center;
    color: gray;
    margin: 0px;
    font-weight: 400;
    font-size: 20px;}
.dash_side2 h1{}
.dash_side2 h3{}

/*dashboard  csss end *//* --- Wallet Main Layout --- */
.wallet_main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
    font-family: inherit;
}

/* --- Top Dashboard Cards --- */
.wallet_top_cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 35px;
}

.wallet_card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px 25px;
    flex: 1 1 300px; /* Makes them sit side-by-side on PC */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-top: 4px solid #021314;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wallet_card.balance_card {
    border-top-color: #021314; /* Dark Theme */
}

.wallet_card.add_money_card {
    border-top-color: #e43737; /* Red Theme */
}

.wallet_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.wallet_card h2 {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wallet_card h2 i {
    margin-right: 8px;
}

.balance_amount {
    font-size: 38px;
    font-weight: 700;
    color: #021314;
    margin: 0;
    line-height: 1;
}

/* --- Add Money Form --- */
.add_money_form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.add_money_form input[type="number"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    background: #fdfdfd;
    outline: none;
    transition: border-color 0.3s;
}

.add_money_form input[type="number"]:focus {
    border-color: #e43737;
}

.btn_add_money {
    background: #e43737;
    color: #fff;
    border: none;
    padding: 13px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.btn_add_money:hover {
    background: #021314;
}

/* --- Transaction History Area --- */
.wallet_history_wrapper h3 {
    font-size: 20px;
    color: #021314;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.wallet_history_wrapper h3 i {
    color: #e43737;
    margin-right: 8px;
}

/* Mobile scrolling wrapper for the table */
.wallet_table_container {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    overflow-x: auto; /* Allows horizontal scrolling on small phones */
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

/* 6-Column CSS Grid */
.wallet_table_header,
.wallet_table_row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr 2fr;
    gap: 15px;
    padding: 15px 20px;
    min-width: 750px; /* Prevents columns from crushing too tightly on mobile */
    align-items: center;
    font-size: 14px;
}

.wallet_table_header {
    background: #021314;
    color: #ffffff;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.wallet_table_row {
    border-bottom: 1px solid #eee;
    color: #444;
}

.wallet_table_row:last-child {
    border-bottom: none;
}

.wallet_table_row:hover {
    background: #f9f9f9;
}

/* Typography Utilities */
.fw_bold { font-weight: 700; color: #021314; }
.text_success { color: #28a745; font-weight: 600; }
.text_danger { color: #dc3545; font-weight: 600; }
.txn_id { font-family: monospace; background: #f1f1f1; padding: 3px 6px; border-radius: 4px;}

/* Mobile Responsiveness for Top Cards */
@media (max-width: 600px) {
    .add_money_form {
        flex-direction: column;
        align-items: stretch;
    }
}


/* order navigator */
.navigator_up {margin: 10px;
    font-size: 11px;
    text-align: center;}
.nav_cont {width: fit-content;
    padding: 5px;
    border-radius: 33px;
    display: inline-block;
    background: #f3f3f3;}
	
	.nav_cont:hover {
		background: #c1c1c1;
	}
 .navigator_up .active {background: #03A9F4 !important;
    color: white !important;
}
.nav_cont i {}
	
	
	#forgot_pass {display:none;}
	/*footer*/
	
	footer {background: black;
    color: white;}
	footer p{margin: 0px;
    padding: 14px;
    text-align: center;
    font-size: 11px;}
	
	
html {overflow-x: hidden;}
body {padding:0;margin:0;font-family:'Barlow',sans-serif;background:#f1f1f1;}
	a {text-decoration:none;color:unset;}
div,h1,h2,h3,h4,p,i,a {position:relative;transition:0.4s;}

form,input,textarea,select {font-family:'Barlow',sans-serif;}
:root {
	--color:#848484;
	--color2:#64af35;
}
/*alerts */
div,h1,h2,h3,h4,p,i,a,footer {position:relative;transition:0.4s;}

input,select,textarea,button {font-family: 'Barlow',sans-serif;}

a {    text-decoration: unset;
    color: unset;}

input::placeholder {font-size:12px}

.alert_full_page {
	height: -webkit-fill-available;
    width: -webkit-fill-available;
    color: black;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}
.alert_full_page h3{}
 .next_btn {      width: 36%;
    background: #2196F3;
    padding: 10px 10px;
    color: white;
    display: inline-block;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px #00000017;
    margin: 10px;
    text-align: center;
    font-size: 18px;
    max-width: 200px;
}
.refresh_btn {      width: 40%;
    background: #E91E63;
    padding: 10px 10px;
    color: white;
    display: inline-block;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px #00000017;
    margin: 10px;
    text-align: center;
font-size: 18px;
    max-width: 200px;}
.alert {     padding: 23px;
    width: fit-content;
    font-size: 13px;
    margin: 0px auto;
    font-weight: 500;
    border-radius: 6px;}
	
.danger {background: #ffd0d082;
    color: #d45050;}
.info {    background: #d0deff82;
    color: #5097d4;
}
.success {background: #90ff6c82;
    color: #1aab2c;
}	

.alert b {}
.clip_path1 {
	      position: fixed;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    background: linear-gradient(45deg, black, #301958);
    top: 0;
    left: 0;
	
}

header {
               background: #e43737;
    color: white;
    width: -webkit-fill-available;
    padding: 0;
    overflow: hidden;
    position: sticky;
    display: flex;
    padding: 0px 68px;
    top: 0;
    z-index: 22;
    box-shadow: 0px 0px 10px 0px #00000026;

}
header .logo{    display: flex}
header .logo h3{       margin: 0px 0px;
    width: auto;
    font-weight: 400;
    font-family: Allerta Stencil;
    border: 0px solid;
    border-radius: 60px;
    padding: 2px 0px;}
header .logo img{    width: auto;
    height: 65px;
    margin: 5px;}
	
header .head_txt {display: flex;
    position: absolute;
    right: 80px;}
header .head_txt h3{            top: -11px;
    font-weight: 500;
    padding: 27.5px 13px;
    cursor: pointer;
    font-size: 15px;
    letter-spacing: -0.4px;
	}
	
header .head_txt h3:hover {
	       transition: 0.2s;
    background: #00000012;
    border-radius: 5px;
}	

.mobile_home {display:none;}



.login img {    width: 122px;
    position: relative;
    display: block;
    margin: 10 auto;}
.login {    width: -webkit-fill-available;
    background: white;
    height: auto;
    margin: 7% auto;
    box-shadow: 0px 0px 10px 0px #00000024;
    border-radius: 2px;
    padding: 50px;
    max-width: 500px;}


.login h1{margin: 0;
    font-weight: 500;
    color: #000000;
    letter-spacing: -1px;
    text-align: center;}
.login p{margin: 17px 7px;
    font-size: 11px;
    color: gray;}
.login form{margin: 0px 0px 5px;}
.login form a{font-size: 10px;
    margin: 9px;
    position: relative;
    font-weight: 500;
    cursor: pointer;
    color: black;
    padding: 7px;
    border-radius: 19px;}
.login form input{width: -webkit-fill-available;
    border: 0px;
    padding: 12px 30px;
    margin: 5px;
    font-size: 18px;
    border-radius: 5px;
    background: #d4d4d438;
    outline: none;
}
.login form input[type=submit]{    background: #2196F3;
    color: white;
    border: 0px;
    text-transform: uppercase;
    padding: 10px;
    border-radius: 5px;
    font-weight: 500;}
#register,#forgot_pass {display:none;}
.back_btn_arrow {    position: relative;
    z-index: 2;
    font-size: 30px;
    top: -11px;
    left: 8px;
    color: #e7382b;}
.main2 {
margin: 0px;
    background: white;
    padding: 10px 0px;
    box-shadow: 0px 0px 10px 0px #80808036;
    border-radius: 10px;
    text-align: center;
}
.btn_create {
	       width: 41%;
    color: white;
    background: #2196F3;
    padding: 10px 10px;
    border-radius: 4px;
    font-size: 15px;
    display: inline-block;
    margin: 4px 3px;
    max-width: 300px;
}


.complete_form {    background: white;
    position: fixed;
    z-index: 44;
    padding: 20px;
    box-shadow: 0px 0px 20px 0px #00000038;
    left: 50%;
    transform: translate(-50%);}
.complete_form h3{    text-align: center;
    padding: 20px;
    margin: 0;
    text-transform: capitalize;
    color: #282828;}
.complete_form .cust_login_in{    display: grid;
    grid-template-columns: 30% 70%;
    border: 1px solid #90909073;}
	
	.complete_form  p {    font-size: 12px;
    margin: 3px 3px;}
option:hover {background:#e3e3e3} 

.complete_form .cust_login_in input,select{       border: 0px;
    font-size: 14px;
    padding: 12px;}
.complete_contact_number{        margin: 16px 0px;
    width: -webkit-fill-available;
    background: #2196f3;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: 0px;
    text-transform: uppercase;
    text-align: center;}

.container {    background: white;
    margin: 0px;
    overflow: auto;
    padding: 0px;
    min-height: -webkit-fill-available;
    box-shadow: 0px 0px 10px 0px #0000001f;
    max-height: 1000px;
}
 .card_row{    background: #000000;
    margin: 0px;
    padding: 0px;
    display: grid;
    grid-template-columns: 7% 19% 10% 12% 13% 13% 10% 16%  ;
    box-shadow: 0px 0px 10px 0px #0000001f;
    width: -webkit-fill-available;
    color: white;
    font-weight: 600;}
 .card_row .row_contd{   width: -webkit-fill-available;
    text-align: center;
    padding: 7px;
    margin: 0px;
    background: black;
    font-size: 13px;}
	
	.card_row2 {display: grid;
    grid-template-columns:7% 19% 10% 12% 13% 13% 10% 16%  ;	    background:white;}
	.card_row2 .row_contd{        margin: 0px;
    width: -webkit-fill-available;
    text-align: center;
    padding: 6px;    max-height: 50px;

    overflow: auto;
    font-size: 12px;
    font-weight: 500;}
	
	.card_row2:nth-child(2n+2) {
       background: #f1f9ff;
}
	.card_row2 .row_contd i{width: auto;
    display: inline-block;
    border: 1px solid #dedede;
    padding: 6px 8px;
    font-weight: 500;
    margin: 0px 4px;border-radius:4px;}
.card_row2 .row_contd img {width: 57px;
    max-height: 50px;}
	
	
.op_hour {    width: -webkit-fill-available;
    max-width: 700px;
    margin: 10px auto;}
.oh_grid {    display: grid;
    grid-template-columns: 33% 33% 33%;
    margin: 7px;}
.oh_grid h3{    text-align: left;
    padding: 0px 20px;font-size:14px;}
.oh_grid input{    padding: 18px;
    width: 90%;
    height: fit-content;
    border: 1px solid #e9e9e9;
    background: #fdfdfd;
    font-size: 14px;}

.container form {width: fit-content;
    border: 1px solid #b5b5b5;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;}
.container form select{border: 1px solid #d2d2d2;
    padding: 5px;
    background: #efefef;
    border-radius: 3px;}
.container form h3{    margin: 0px 0px 13px;
    font-weight: 600;
    font-size: 15px;
    text-transform: capitalize;
    text-align: center;
    color: black;}
.container form input[type=submit]{background: #2196f3;
    color: white;
    padding: 6px;
    border: 0px;
    border-radius: 3px;}
.main3 {
        margin: 0px;
    background: white;
    padding: 25px;
    box-shadow: unset;
    border-radius: 0;
    min-height: 78vh;	
}
.main3 h2{    margin: 11px 0px;
    font-weight: 400;
    font-size: 24px;}
.main3 h3{}

.main3 h1{    font-weight: 400;
    margin: 13px 0px 33px;
    font-size: 25px;
    text-align: center;}
.main3 form {text-align: center;
    display: inline-block;
    width: -webkit-fill-available;}
.main3 form .input_box{        border: 1px solid #dcdcdc;
    width: -webkit-fill-available;
    margin: 10px auto;
    border-radius: 5px;
    background: #ffffff05;
    max-width: 600px;
    display: grid;
    grid-template-columns: 30% auto;
    align-items: center;}
.main3 form .input_box p {      padding: 0px;
    color: #000000;
    background: #e7e7e7;
    font-weight: 500;
    display: block;
    height: -webkit-fill-available;
    position: relative;
    font-size: 12px;
    margin: 0px;
    text-align: left;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    border-right: 1px solid #d9d9d9;}
	.main3 form #showPreviewLogo {width: 100px;
    height: 100px;
    border: 1px solid lightgray;
    margin: 0 auto;
    position: relative;
    left: auto;
    transform: unset;}
	
	
	.main3 form img {        max-width: 100%;
    max-height: 131px;
    border: 1px solid lightgray;
    margin: 0 auto;
    position: relative;
    left: auto;
    transform: unset;}
	
	.divider {   background: transparent;
    width: 200px;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0px 0px 20px 0px #6e6e6e75;
    margin: 5px;}
	.main3 form .divider .input_box {width: -webkit-fill-available;}
	.divider .num {     width: fit-content;
    background: linear-gradient(45deg, #9C27B0, #3F51B5);
    color: white;
    padding: 5px 10px;
    position: relative;
    z-index: 5;
    left: -6px;
    font-size: 11px;
    top: -6px;
    border-radius: 4px;}
.main3 form .input_box input,.main3 form .input_box textarea,.main3 form .input_box select{width: -webkit-fill-available;
    height: auto;
    padding: 15px 15px;
    border: 0px;
    outline: none;
    background: #00000003;    resize: vertical;}
	
	.main3 form .input_box input[type=color]{    height: 27px;
    padding: 2px;
    margin: 8px 3px;}
.main3 form   input[type=submit]{        background: #4caf50;
    border: 0px;
    padding: 13px 31px;
    margin: 19px auto;
    color: white;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    display: block;
    width: -webkit-fill-available;
    max-width: 600px;
}

.divider_cat {            display: none;
    position: fixed;
    background: white;
    z-index: 89;
    width: 100%;
    max-height: 90%;
    overflow: auto;
    max-width: 900px;
    border: 1px solid #e0e0e0;
    padding: 15px 0px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 4px;}
	
	.close_cat {    width: fit-content;
    color: #ec3232;
    position: absolute;
    right: 0;
    padding: 10px;
    font-size: 25px;
    top: 0;}
	.divider_cat img{}
	.divider_cat .input_box{}
	.divider_cat .input_box input{}
	
	.fa-trash-o {color:red}
	.cat_row {       width: -webkit-fill-available;
    display: grid;
    grid-template-columns: 15% 15% 15% 15% 15% 15%;
    font-size: 14px;
    text-align: center;
    align-items: center;
    }
	.fa-trash {    color: red;}
	.cat_n {    padding: 8px;}
	.cat_n img{       width: 50px;
    height: 50px;}
	.active {}
	#Success,#Created,#Failed {background: #01ce01;
    color: white;
    padding: 6px 0px 0px;
    border-radius: 5px;
    height: 24px;
    margin: 3px 0px;}
	#Created {background:#eac22e}
	#Failed { background: #ce0101a6;}
	
	
	
	.divider2 {  background: transparent;
    width: 173px;
    padding: 10px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0px 0px 10px 0px #00000026;
    margin: 5px;}
	.main3 form .divider2 .input_box {width: -webkit-fill-available;}
	.main3 form .divider2 .input_box input{width: -webkit-fill-available;}
	.divider2 .num {  width: fit-content;
    background: #5097d4;
    color: white;
    padding: 5px 10px;
    position: relative;
    z-index: 5;
    left: -6px;
    top: -6px;
    border-radius: 0px;}
	
	.divider2 img {    max-width: 100px !important;
    max-height: 100px;}

.count_back {    background: red;
    color: white;
    width: 20px;
    display: block;
    margin: 5px auto;
    border-radius: 20px;
    padding: 3px 1px;}

.progress {   background: #1bb54b1a;
    width: -webkit-fill-available;
    border: 1px solid #1bb54b29;
    overflow: hidden;
    height: 12px;
    border-radius: 10px;}
.progress .progress_bar p {margin: 0;
    position: absolute;
    right: 0;
    background: white;
    font-weight: 700;
    font-size: 10px;
    color: green;}
.progress .progress_bar {background: #1bb54b96;
    width: 10px;
    height: 16px;}

.block_screen_loading {display:none;position: fixed;
    z-index: 999;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    background: #00000030;
    top: 0;
    left: 0;}
	
	.delImg {position: absolute;
    top: 3px;
    right: 3px;
    background: #f6364a;
    color: white;
    padding: 7px 8px;}
.block_screen_loading .loader{ width: 50px;
    height: 50px;
    border: 10px solid white;
    border-bottom: 10px solid black;
    border-radius: 100%;
    margin: 21% auto;
    animation: loader 2s linear infinite;}

@keyframes loader {
	0% {transform:rotate(0deg)}
	33% {transform:rotate()}
	76% {transform:rotate()}
	100%{transform:rotate(360deg)}
}

.theme {   width: fit-content;
    display: inline-block;
    margin: 5px auto;
    text-align: center;
    border: 2px solid transparent;
    padding: 11px;
    border-radius: 35px;}
.theme:hover {
	border: 2px solid #ffb76c;
	transition:0.3s;
}
.theme img{width: 100px;
    border: 17px solid #23434e;
    height: 194px;
    border-radius: 18px;
    margin: 0 auto;
    border-left: 5px solid #23434e;
    border-right: 5px solid #23434e;}
.selected {background: #01ce01;
    color: white;
    width: fit-content;
    padding: 10px;
    font-weight: 500;
    margin: 5px;
    border-radius: 5px;
    font-size: 10px;
    position: absolute;
    top: 0;
    z-index: 6;
    left: -10px;}	
	
	.btn_holder {top: 5px; }
	.btn_holder .skip_btn,.back_btn {display:inline-block}
	.btn_holder .skip_btn{ left: 100%;
    transform: translate(-229%, 2px);}
	.skip_btn {background: #2196f3;
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    width: fit-content;
    border-radius: 28px;	}
	 .back_btn{       background: black;
    color: white;
    padding: 8px 16px;
    width: fit-content;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 34px;
    font-size: 12px;}
	
	.active {}
	#Success,#Created,#Failed {       color: green;
    padding: 6px 7px 2px;
    width: inherit;
    background: transparent;
    border-radius: 5px;
    margin: 5px auto;
    height: 20px;}
	#Created {background:#eac22e}
	#Failed { background: #ce0101a6;}
	.card_status1,.card_status2 ,.card_status3 {    clip-path: polygon(0 0, 100% 0, 100% 100%); -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
    width: 100px;
    height: 100px;
    background: #f9aa79;
    color: white;
    position: absolute;
    top: 0;
	z-index:888;
    right: 0;
    box-shadow: 0px 0px 10px 0px #0000002e;
}
.card_status1 p,.card_status2 p,.card_status3 p {transform: rotate(45deg);
    margin: 12px 31px 33px 44px;
    font-weight: 600;}
	.card_status2 {background: #01ce01;}
	.card_status3 {background: red;}
	
	
	.share_wtsp form{    display: flex;
    margin: 14px auto 20px;
    position: relative;
    width: fit-content;}
	.wtsp_share_btn  {background: #1aab2c;
    font-size: 12px;
    padding: 10px;cursor:pointer}
	.wtsp_share_btn i {}
	
	
	.share_box .close { font-size: 47px;
    text-align: end;
    padding: 0px 10px;
    font-weight: 400;
    color: red;}
	
	.pay_now_btn {background: linear-gradient(0deg, #41dc1b, #4CAF50);
    color: white;
    height: auto;
    margin: 3px 5px !important;
    border-radius: 3px;}
	
	
	.image_err {padding: 10px;
    background: #ffd2d2;
    color: #c55a5a;
    list-style-type: decimal-leading-zero;
    font-size: 10px;
    margin: 5px 10px;
    width: fit-content;
    border-radius: 5px;}
	
	.input_box_spe {         display: grid;
    max-width: 600px;
    width: 100%;
    grid-template-columns: 30% auto;
    margin: 3px auto;
    background: #e7e7e7;
    border: 1px solid #d2d2d2;
    border-radius: 3px;}
	.input_box_spe p{    margin: 0px;
    padding: 4px 13px;
    font-size: 12px;
    text-align: left;}
	.input_box_spe input{    padding: 5px;
    border: 0px;}
	
	#input_box_spewhatsapp2 {background:#1aab2c;color:white}
	.input_box_spefa-comment-dots	 {background: #1cbdff;
    cinput_box_speolor: white;}
	.input_box_speshare_box .close i {}
	.input_box_speshare_box {display:none;background: white;
    cinput_box_speolor: black;
    pinput_box_speosition: fixed;
    tinput_box_speop: 10%;
    width: 351px;
    padding: 10px;
    box-shadow: 0px 0px 10px 0px #00000033;
    z-index: 3;
    border-radius: 11px;}
	.shar_btns {    width: 100px;
    text-align: center;
    display: inline-block;}
	.shar_btns i{padding: 10px;
    border-radius: 8px;}
	.shar_btns p{font-size: 10px;}
	/*customer card preview*/
	
	#alert_display_full {
		display:none;
		top: 0;
    position: fixed;
    background: #000000b8;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    z-index: 99999;
    left: 0;
}
#alert_display_full h3 {    margin: 7px auto;
    width: fit-content;
    font-weight: 500;
    color: white;
    font-size: 25px;}
#loader1 {width: 50px;
    height: 50px;
    border: 10px solid #ffffff;
    border-radius: 100%;
    margin: 16% auto 0px;
    border-bottom: 10px solid gray;
    position: relative;
    animation: loader1 3s linear infinite;
}

	
@keyframes loader1 {
	0%{transform:rotate(0deg);}
	100%{transform:rotate(360deg);}
}
	
/*pop up offer page*/
.pop_up_offer {  position: fixed;
    z-index: 3;
    background: white;
    left: 50%;
    transform: translate(-50%, 6px);
    padding: 31px 50px;
    box-shadow: 0px 0px 10px 0px #00000033;
    top: 117px;
    text-align: center;
    border-radius: 10px;
}
.pop_up_offer img{    width: 115px;
    margin: 0 auto;
    position: relative;}
.pop_up_offer h1{font-weight: 500;
    text-transform: capitalize;
    text-align: center;
    margin: 0;
    color: orange;}
	
	
	.sug_alert {text-align: center;
    font-size: 12px;
    color: #bf0707;}
	
	.close {position: absolute;
    right: 13px;
    font-size: 44px;
    top: 0;
    color: red;}
.pop_up_offer h2 strong {color:green}
.pop_up_offer h2{text-align: center;
    margin: 0px auto 8px;
    font-weight: 500;
    font-size: 15px;
    color: #015fb1;}
.pop_up_offer h3{font-size: 12px;
    text-align: center;
    color: #e04684;}
.pop_up_offer p{}
.pop_up_offer i{}


.save_contact_popup {       background: white;
    padding: 18px;
    min-width: 50%;
    position: fixed;
    z-index: 4;
    left: 50%;
    transform: translate(-50%, 39px);
    border-radius: 5px;
    box-shadow: 0px 0px 42px 0px #00000038;
}
.save_contact_popup h1{}
.save_contact_popup h2{color: #2d2db3;
    font-weight: 600;
    font-size: 21px;
    text-decoration: underline;
}
.save_contact_popup h3{    font-weight: 500;
    text-transform: capitalize;
    font-size: 13px;
    margin: 2px;
    color: #0086c5;}
.save_contact_popup p{font-size: 15px;
    color: #222225;
    margin: 5px;}
.btn_save {display: inline-block;
    margin: 4px auto;
    background: #4CAF50;
    color: white;
    padding: 10px;
    font-size: 15px;
    border-radius: 5px;
    left: 50%;
    transform: translate(-50%, 0px);
    border: 2px solid white;
    box-shadow: 0px 0px 20px 0px #7d727257;
}

.paypalbtn {display: block;
    margin: 10px auto;
    position: relative;
    background: linear-gradient(0deg, #2196F3, #3F51B5);
    width: fit-content;
    color: white;
    padding: 10px 20px;
    font-style: italic;
    border: 2px solid;
    border-radius: 5px;}
	
	/*customer QR code preview*/
	
	
	#qr_code_d {left: 50%;
    position: relative;
    transform: translate(-50%, 0px);
    margin: 0px 0px 24px;
}

/* order navigator */
.navigator_up {margin: 10px;
    font-size: 11px;
    text-align: center;}
.nav_cont {    width: fit-content;
    padding: 5px;
    border-radius: 33px;
    display: inline-grid;}
	
	.nav_cont:hover i{
		background: blue;color:white;
	}
 .active {background: #f44336 !important;
    color: white !important;
}
.nav_cont i {    width: fit-content;
    margin: 3px auto;
    font-size: 19px;
    background: #f0f0f0;
    padding: 8px;
    min-width: 20px;
    border-radius: 26px;}

.navigator_up .activen i {
    background: #4CAF50 !important;
    color: white !important;
}

.order_box {background: whitesmoke;
    width: fit-content;
    padding: 15px;}
.order_box i{}
.order_box .order_alert{width: fit-content;
    background: #FF9800;
    padding: 4px 10px;
    color: white;
    position: absolute;
    top: -17px;
    font-size: 13px;
    border-radius: 100px;}
	
/*pagination*/
	.pagination {
      display: flex;
    margin: 0px auto 10px;
    position: relative;
    background: white;
    width: fit-content;
    text-align: center;
    padding: 11px;
    
	}
	.page_btn {background: #b1b1b1;
    margin: 2px;
    padding: 7px 15px;
    color: white;
    font-size: 17px;
    box-shadow: 0px 0px 10px 0px #00000038;
    border-radius: 3px;
    font-weight: 600;}
	.pagination .active{   background: #5097d4;}
	
	
	
	/*order page*/
	
	.Placed,.Shipped,.Complete,.Cancel,.Created {
		background: #8BC34A;
    height: fit-content;
    color: white;
    border-radius: 5px;
	}
	.Complete {
		background: #4CAF50;
	}
	.Shipped {background: #00BCD4;}
	.Cancel {
		background: #ff9494;
	}
	
	.all_orders {    width: 226px;
    text-align: center;
    padding: 6px;
    font-size: 12px;
    margin: 5px;
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    box-shadow: 0px 0px 20px 0px #9c8b8b5e;
    border-radius: 9px;}
	
	.all_orders p{  font-size: 13px;
    height: 18px;
    font-weight: 600;
    margin: 6px 0px 13px;
    padding: 16px;
    border-radius: 8px;}
	.container2 {
        background: white;
    margin: 0px;
    padding: 0px 0px 35px;
    min-height: 500px;
    box-shadow: 0px 0px 10px 0px #0000001f;
    height: auto;
}
.container2 h1 {
  background: #03A9F4;
    color: white;
    margin: 0;
    font-weight: 400;
    padding: 10px 3%;
    font-size: 20px;
}

.container2 form {width: 338px;
    margin: 0 auto;}
.container2 form h3{}
.container2 form input{}
.container2 .btn_payment{    background: #2196F3;
    color: white;
    padding: 13px;
    width: fit-content;
    margin: 0 auto;
    border-radius: 25px;
    font-size: 14px;
    text-transform: uppercase;
    border: 0px;
    display: block;
}

.container2 .btn_payment:hover{transition: 0.4s linear;
    background: #4CAF50;cursor:pointer}
.my_account_form {    padding: 0px 30px;}
.my_account_form h3{font-size: 20px;
    font-weight: 400;
    text-align: center;
    border-bottom: 2px solid #636363;
    padding: 0px 10px 10px;
    width: fit-content;
    margin: 14px auto 21px;}
.my_account_form img {  width: 100px;
    max-height: 150px;
    border: 2px solid #00000024;
    margin: 10px auto 20px;
    border-radius: 100%;
    position: relative;
    left: 50%;
    transform: translate(-50%, 10px);}

.input_area p{position: absolute;
    font-size: 10px;
    top: -28px;
    left: 0px;}
.input_area {    width: 300px;
    padding: 0px;
    margin: 17px 10px;
    display: inline-block;
    border: 1px solid #0000002b;
    background: #0000000a;
    border-radius: 4px;}
.input_area input {background: transparent;
    border: 0px;
    padding: 10px;
    margin: 0px;
    width: -webkit-fill-available;
    
}
.input_area textarea{    background: none;
    width: -webkit-fill-available;
    border: 0px;
    min-height: 200px;white-space: pre;}
	.input_new_feature {    background: #f44336;
    color: white;
    font-size: 11px;
    width: fit-content;
    display: inline-block;
    position: absolute;
    right: 0;
    top: -12px;
    padding: 3px;
    border-radius: 3px;}
	
	.remove_btn {    background: #673ab7;
    color: white;
    font-size: 13px;
    width: fit-content;
    padding: 3px;
    left: 100%;
    transform: translate(-100%);
    cursor: pointer;border-radius:4px;}
#filter_option {    padding: 0px;
    margin: 0px;
    text-align: center;
    background: white;}
#filter_option select{padding: 5px;
    margin: 10px 3px;
    border: 2px solid #89c24b;
    outline: 0px;
    background: #ffffff;
    text-align: center;}
#filter_option input[type='submit']{background: #6bb94d;
    color: white;
    padding: 8px;
    border: 0px;}

	/*footer*/
	
	footer {background: black;
    color: white;}
	footer p{margin: 0px;
    padding: 14px;
    text-align: center;
    font-size: 11px;}
	
	
	.create_postar {       background: #2196f3;
    color: white;
    padding: 6px;
    margin: 0px;
    display: block;
    border-radius: 4px;}
	

.div_ecom {      display: flex;
    margin: 10px auto;
    border: 1px solid #c6c6c6;
    width: -webkit-fill-available;
    justify-content: flex-end;
    max-width: 1000px;
    flex-wrap: wrap;
    background: #f0f0f0;
    border-radius: 6px;
    padding: 10px;}
#div_ecom img{    width: 100px;
    background: white;
    border-radius: 4px;}

.input_box_old p{    margin: 0px;
    font-size: 12px;
    font-weight: 500;
    text-align: left;
    padding: 5px;}
.input_box_old {       display: grid;
    margin: 3px;
    background: #e7e7e7;
    padding: 2px 4px;
    border-radius: 4px;
    width: -webkit-fill-available;
    max-width: 700px;
    margin: 4px auto;
    grid-template-columns: 30% auto;}
.input_box_old input,.input_box_old select,.input_box_old textarea{      border: 1px solid;
    height: -webkit-fill-available;
    margin: 0px;
    border: 0px;
    background: #ffffff;
    padding: 8px;
    font-size: 16px;}
 


.input_box_2 {}
.input_box_2 p{    font-size: 13px;
    margin: 3px;
    text-align: left;}
.input_box_2 input,.input_box_2 textarea,.input_box_2 select{    font-size: 15px;
    padding: 10px;
    margin: 8px;
    border: 0px solid gray;}/* --- Card Manager Container --- */
.manager-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: inherit;
}

.back_btn {
    display: inline-block;
    color: #e43737;
    font-size: 16px;
    text-transform: capitalize;
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.back_btn:hover {
    color: #021314;
}

.manager-container h2 {
    color: #021314;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* --- HTML Table Styling --- */
.table-responsive {
    width: 100%;
    overflow-x: auto; /* Allows horizontal scrolling on small screens */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
}

.manager_table {
    width: 100%;
    border-collapse: collapse; /* Essential for proper HTML tables */
    min-width: 900px; /* Prevents text from crushing on mobile */
    font-size: 14px;
}

.manager_table thead th {
    background-color: #021314; /* Dark Theme */
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 15px 12px;
    text-align: left;
    white-space: nowrap;
}

.manager_table tbody td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    color: #333;
    vertical-align: middle;
}

/* Hover effect for rows */
.manager_table tbody tr:hover {
    background-color: #f9f9f9;
}

/* Removes bottom border on last row */
.manager_table tbody tr:last-child td {
    border-bottom: none;
}

/* Utility Classes for content */
.text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 180px; /* Adjust based on preference */
}

.card_link {
    color: #021314;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.card_link:hover {
    color: #e43737;
}

/* Status Badges */
.badge {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    display: inline-block;
}
.badge.success { background: rgba(40, 167, 69, 0.1); color: #28a745; }
.badge.warning { background: rgba(255, 193, 7, 0.1); color: #d39e00; }
.badge.danger { background: rgba(220, 53, 69, 0.1); color: #dc3545; }

/* Action Buttons */
.user_activate_btn {
    cursor: pointer;
    background: #f1f1f1;
    padding: 6px 12px;
    border-radius: 4px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    transition: background 0.3s;
    white-space: nowrap;
    display: inline-block;
}

.user_activate_btn:hover {
    background: #e0e0e0;
}

.edit_btn {
    color: #ffffff;
    background-color: #021314;
    padding: 8px 12px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
    display: inline-block;
}

.edit_btn:hover {
    background-color: #e43737;
}