@font-face
{
	src : url('../fonts/Raleway-Light.ttf');
	font-family: Raleway;
	font-weight: 300;
}
@font-face
{
	src : url('../fonts/Raleway-Regular.ttf');
	font-family: Raleway;
	font-weight: 400;
}
@font-face
{
	src : url('../fonts/Raleway-Medium.ttf');
	font-family: Raleway;
	font-weight: 500;
}
@font-face
{
	src : url('../fonts/Raleway-SemiBold.ttf');
	font-family: Raleway;
	font-weight: 600;
}
@font-face
{
	src : url('../fonts/Raleway-Bold.ttf');
	font-family: Raleway;
	font-weight: 700;
}
@font-face
{
	src : url('../fonts/Raleway-ExtraBold.ttf');
	font-family: Raleway;
	font-weight: 300;
}
@font-face
{
	src : url('../fonts/Raleway-Black.ttf');
	font-family: Raleway;
	font-weight: 900;
}

*
{
	font-family: 'Raleway';
	font-weight: 400;
	text-decoration: none !important;
	outline: none !important;
	box-sizing: border-box;
}


:root
{
	--white: #fff;
	--black: #000;
	--purple: #8c4af2;
	--voilet: #6259f8;
	--grey: #f2f3f8;
	--blue: #2e53da;
}

:focus
{
	box-shadow: none !important;
}
::-webkit-scrollbar
{
  width: 5px;
  height: 5px;
  transition: all .5s ease;
}
::-webkit-scrollbar-track
{
	background: #fff;
}
 
::-webkit-scrollbar-thumb
{
  background-color: #959595;
  border-radius: 21px;
}

.hoverrr:hover {
    background-color: #ccc; /* Change this to the desired hover background color */
    cursor: pointer; /* Change this to the desired cursor style */
}

body
{
	margin: 0;
	padding: 0;
}
ul
{
	list-style: none;
}
.font-purple
{
	color: var(--purple);
}

.login_sec
{
	width: 100%;
	min-height: 100vh;
	background: url(../img/bg_login.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	justify-content: center;
	align-items: center;
}
.inner_login
{
	padding: 30px 50px;
	width: 100%;
	max-width: 700px;
	margin: auto;
	background: var(--white);
	box-shadow: 0 0 10px rgba(0,0,0,.2);
	border-radius: 20px;
}
.login_head
{
	color: var(--black);
	font-size: 35px;
	text-align: center;
	font-weight: 700;
}
.form_label
{
	background: transparent;
	border: none;
}
.form_field
{
	border: none;
	font-weight: 600;
}
.form_div
{
	padding: 13px;
	box-shadow: 0px 4px 11px 2px #d4e2ff;
	border-radius: 30px;
}
.form_icon
{
	color: var(--purple);
	font-size: 25px;
}
.cursor_point
{
	cursor: pointer;
}
.field_error
{
	color: #f00;
	font-size: 15px;
}
.forgot
{
	color: var(--purple);
}
.sign_btn
{
	width: 100%;
	max-width: 250px;
	padding: 12px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 18px;
}
.gradient_btn
{
	background: linear-gradient(to right, var(--purple) , var(--voilet));
	color: var(--white);
	border-radius: 30px;
	transition: all .3s ease;
}
.gradient_btn:hover
{
	color: var(--white);
}
.new_acc
{
	font-size: 17px;	
}

/*Dashboard*/
.logo,
.logo:hover
{
	font-size: 25px;
	font-weight: 600;
	color: var(--white);
	transition: .3s;
}
.sidebar.activeside .logo,
.sidebar.activeside .logo:hover
{
	font-size: 16px;
}
.openbtn{
	background: none !important;
    width: 100% !important;
    border: 1px solid white;
    border-radius: 5px;
}
.closebtn{
	background: none;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
}
.sidebar
{	
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	/* width: 300px; */
	height: 100vh;
	z-index: 999;
	background: var(--blue);
	padding: 20px 12px ;
	transition: .3s ease;
	overflow-y: auto;
	overflow-x: hidden;
}
.side-item
{
	width: 100%;
	margin-bottom: 15px;
}
.side-link
{
	display: block;
    padding: 10px 14px;
    color: var(--white);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: all .3s ease;
}
.side-link:hover
{
	background: #fff;
	color: var(--blue);
}
.side-link.active
{
	background: #fff;
	color: var(--blue);
	font-weight: 600;
}
.side-item-small
{
	width: 100%;
	margin-bottom: 15px;
}
.openbtn{
	width: 30px;
	background-color: #00317c;
	color: white;
}
.top-bar
{
	width: 100%;
	padding: 10px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,.11);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.user-pic
{
	width: 30px;
	height: 30px;
	border-radius: 50%;
	object-fit: cover;
}
.user-avtar
{
	display: flex;
	align-items: center;
	font-weight: 600;
}
.user_pic_table
{
	position: relative;
	width: 60px;
	height: 60px;
	margin-right: 10px;
}
.user_pic_table:before
{
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 20px;
	height: 20px;
	border: 2px solid #fff;
	border-radius: 50%;
}
.user_pic_table.connected:before
{
	background: #10ac84;
}
.user_pic_table.disconnected:before
{
	background: #ee5253;
}
.user_pic_table.problem:before
{
	background: rgba(254, 202, 87,1.0);
}
.user_pic_table.paused:before
{
	background: #6c757d;
}
.user_pic_table.chilling:before
{
	background: #0dcaf0;
}
.user-pic.avtar_table
{
	width: 60px;
	height: 60px;
}
.content_area
{
	/* width: calc(100% - 300px); */
	margin-left: auto;
	min-height: 100vh;
	background: var(--grey);
	padding: 20px 0;
	padding-bottom: 20px;
	margin-bottom: -25px;
}
.side-icon
{
	font-size: 18px;
}
.dash-head
{
	color: var(--blue);
	font-size: 27px;
}
.add_acc_form
{
	background: var(--white);
	padding: 20px;
	border-radius: 20px;
	box-shadow: 0 0 10px rgba(0,0,0,.11);
}
.simple_btn
{
	background: var(--blue);
	color: var(--white);
	border-radius: 30px;
	border: 1px solid var(--blue);
	transition: .3s ease;
}
.simple_btn:hover
{
	background: transparent;
	color: var(--blue);
}

.simple_btn1
{
	background: green;
	color: var(--white);
	border-radius: 30px;
	border: 1px solid var(--blue);
	transition: .3s ease;
	white-space: nowrap;
}
.simple_btn1:hover
{
	background: transparent;
	color: var(--blue);
}

.cstm-dropdown
{
	left: auto !important;
	right: 0 !important;
	border: none !important;
	box-shadow: 0 0 10px rgba(0,0,0,.15);
	transform: translate(0,51px) !important;
}
.over_card
{
	text-align: center;
	background: #fff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 7px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	height: calc(100% - 7px);
}
.over_card:hover
{
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
.over_head
{
	font-size: 20px;
	font-weight: 600;
	margin: 0;
	color: #2d3436;
}
.over_data
{
	font-size: 42px;
	margin: 5px 0;
	font-weight: 700;
	line-height: 1;
}
.data-container
{
	text-align: center;
	position: relative;
	z-index: 1;
	margin-top: 5px;
}
.data-label
{
	color: #636e72;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.3px;
}
.card-icon
{
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	font-size: 18px;
	transition: all 0.3s ease;
}
.over_card:hover .card-icon
{
	transform: scale(1.1);
}
.active_card
{
	background: linear-gradient(135deg, #ffffff 0%, #fff7d6 100%);
	border: 1px solid rgba(29, 209, 161, 0.3);
}
.active_data
{
	color: #10ac84;
}
.inter_card
{
	background: linear-gradient(135deg, #ffffff 0%, #d6ebff 100%);
	border: 1px solid rgba(72, 219, 251, 0.3);
}
.inter_card .card-icon
{
	background: rgba(72, 219, 251, 0.15);
	color: #48dbfb;
}
.inter_data
{
	color: #0abde3;
}
.cool_card
{
	background: linear-gradient(135deg, #ffffff 0%, #d4f7d9 100%);
	border: 1px solid rgba(29, 209, 161, 0.3);
}
.cool_card .card-icon
{
	background: rgba(238, 82, 83, 0.15);
	color: #ee5253;
}
#client_data
{
	margin-top: -60px;
	margin-bottom: -70px;
}
a.error_accont_tool{
	margin-left: 7px !important;
	padding-right: 2px;
}
.tag-btn
{
	border: none;
	background: #666;
	color: #fff;
	border-radius: 5px;
	padding: 5px 10px;
}
.tag-btn:hover{
	background: rgb(87, 86, 86);
}
.tooltip_hover{
	background-color: red;
}
#wrong_list_error,
#wrong_list_target_user,
#wrong_list_unfollow_user{
	color: red;
    background-color: bisque;
    border-radius: 5px;
    padding: 0px 5px;
	margin-bottom: 2px ;
}
.wrong_list_error_small_span{
	font-size: x-small;
    color: #b90000;
    padding: 0px 5px;
}

.priority{
	width: 60%;
}
.action_btn
{
	border: none;
	background: var(--voilet);
	color: #fff;
	padding: 5px 10px;
	border-radius: 6px;
}
.table_content
{
	font-weight: 600;
	font-size: 18px;
}
.increase
{
	color: #3fe1b7;
	font-weight: 600;
}
.decrease
{
	color: #e13f3f;
	font-weight: 600;
}
.tool_align{
	display: flex;
    justify-content: flex-start;
}
/*------------------------------------------ PC MODULE --------------------------------------------------*/
.pc_action{

	display: flex;
	justify-content: center;
}
.delete_pc_h{
	color: red !important;
	display: flex;
	justify-content: center;

}
.delete_pc_h:hover{
	color: rgb(233, 48, 48) !important;
	font-size: larger;
}
.pc_module_div
{
	padding: 20px 0; 
	background: #eaf3f7a3;	
	border-radius: 15px;
	margin-top: 50px;
	box-shadow: 0 0 10px rgba(0,0,0,.4);
}
#pctableloader
{
	position: absolute !important;
	left: 50% !important;
	top: 50% !important;
}
.btn_col{
	text-align: center;
	pointer-events: none
}
.table-col{
	color: #2e53da;
    font-weight: 700;

}
.profile_table,
.history_div
{
	padding: 20px 0;
	box-shadow: 0 0 10px rgba(0,0,0,.1);
	background: #fff;
	border-radius: 10px;
}
.error_name_div{
	height: 80%;
}
.error_account_name{
	color: #16213E;
}
.error_running{
   color: #0F3460;
}
.error_description{
	color: #533483
}
.error_time{
	color: #123e12;
}
.dataTables_length,
.dataTables_info
{
	margin-left: 10px;
	padding-left: 7px;
}
div.dataTables_info,
.dataTables_length{
	padding-top: 0px !important;
	margin-top: 8px !important;
} 
div.dataTables_info{
	padding-left: 30px !important;
}
.dataTables_filter,
.dataTables_paginate
{
	padding-right: 7px;
}
.tag_show
{
	background: var(--purple);
	border-radius: 30px;
	padding: 5px 9px;
	margin-right: 7px;
}

.del_tag
{
	width: 10px;
	height: 10px;
	background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/10px auto no-repeat;
}
.details_card
{	
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 0 10px rgba(0,0,0,.15);
    border-radius: 10px;
    height: 100%;
}
.add_acc
{	
    width: 167px;
    font-size: 16px;

}
.delete_error,
.acc_delete_button{
	cursor: pointer;
	padding-right: 2px;
}
.resetbtn_error
{
	width: 120px;
	background: red;
	color: white;
	font-weight: bold;
	border-radius: 20px;
	cursor: pointer;
}
.reset_all_btn{
	margin-bottom: 4px;
}
.reset_all_btn:hover{
	margin-top: 2px;
	margin-bottom: 2px;
		
	  
}
.reset_all_btn:active{
	margin-top: 2px;
	margin-bottom: 2px;
		
	  
}
.reset_all_btn:active{
	box-shadow: 0 0 #052341;
	top: 6px;
  }
.delete_error:hover,
.error_accont_tool:hover
{
	font-size: medium;
	padding-right: 0px;
}
.acc_tools{
	margin-right: 4px;
}
.acc_delete_button:hover,
.acc_tools:hover{
	margin-right: 0px;
	font-size: small;
}
#user_table_wrapper .dataTables_scroll
{
overflow-x: auto;
}
.priority_a{
	padding-left: 10px;
	color: black;
	cursor: pointer;
}
.priority_a:hover{
	color:black;
	padding: 3px 10px 3px 10px;
	box-shadow: 0px 0px 3px;
}

.cstm-table
{
width: 100% !important;
}
#user_table_wrapper .dataTables_scrollBody,
#user_table_wrapper .dataTables_scrollHead
{
width: 100% !important;
}
.data_tab_btn {
    border: 1px solid var(--voilet);
    background: transparent;
    padding: 4px 8px;
    border-radius: 5px;
    color: var(--voilet);
    display: inline-block;
    margin-bottom: 6px;
}
.data_tab_btn.active
{
	background: var(--voilet);
	color: var(--white);
}
.cstm-table
{
	min-width: 1555px !important;
}
.fa-paper-plane{
	color: #4141c5;
	cursor: pointer;
}
.fa-trash-alt{
	cursor: pointer;
}
.cstm_drop
{
    left: auto !important;
    right: 0;
    padding: 10px 9px;
    min-width: 50rem !important;
}
/* ----------------------custom-select------------------------------------------- */
.custom-select {
	width: 40%;
}
/* -------------------------custom-select-end------------------------------------ */
div.dataTables_wrapper {
	width: 100%;
	margin: 0 auto;
}
.table_content {
    font-weight: 600;
    font-size: 14px;
}
.badge {
    display: inline-block;
    padding: .35em .65em;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}
/* ------------------------------------------------------------------------------------ */
.user-pic.avtar_table {
    width: 45px;
    height: 45px;
}
.user_pic_table {
    position: relative;
    width: 45px;
    height: 45px;
    margin-right: 10px;
}
.user_pic_table:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 15px;
    height: 15px;
    border: 2px solid #fff;
    border-radius: 50%;
}
a {
    color: #0d6efd;
    text-decoration: underline;
    font-size: 14px;
}.social {
	font-size: 12px;
}
.table_content {
    font-weight: 600;
    font-size: 14px;
}
/* -------------------------------------Add Account Start------------------------------------------------- */
.btn-blue {
	background: #2e53da;
	color: #fff;
}
.btn-blue:hover {
    color: #fff;
    background-color: #2e53da;
    border-color: #2e53da;
}
/*-------------------------------------Add Account End------------------------------------------------ */
/* -------------------------------------Account tools Start------------------------------------------- */
.btn-danger 
{
	font-size: 14px; 
}
#user_table_wrapper .dataTables_scroll
{
overflow-x: auto;
}
.cstm-table
{
width: 100% !important;
}
#user_table_wrapper .dataTables_scrollBody,
#user_table_wrapper .dataTables_scrollHead
{
width: 100% !important;
}
.nav-tabs-cus .cus-item .cus-nav-link.active {
	color: #ffffff;
    background-color: #2e53da;
    border-radius: 5px;
}
.nav-tabs-cus .cus-item .cus-nav-link {
	color: #000000;
    background-color: #ecf7f4;
    border-radius: 5px;
	border: 1px solid rgb(204 203 225) !important; 
}
/*-----------------------------------------Data Table Search------------------------------------------*/
#user_table_wrapper .dataTables_filter input {
    margin-left: 0.5em !important;
    display: inline-block !important;
    width: 80% !important;
}
#user_table_wrapper .dataTables_filter label
{
	display: block !important;
	text-align: right;	
}
/*-------------------------------------Account tools End--------------------------------------------- */
.acc_inner
{
	padding: 30px;
    background: #fff;
    border-radius: 31px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
.table_modify td, .table_modify th 
{
    padding-top: 16px !important;
    padding-bottom: 16px !important;
    padding-left: 13px !important;
    padding-right: 13px !important;
}
.ws-nowrap
{
	white-space: nowrap;
}
.user_source_list
{
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 18px;
    padding: 14px;
	margin-bottom: 15px;
	display: none;
}

.existing_user_source_list,
.existing_unfollow_specific_user
{
	background: #fff;
    border: 1px solid #ccc;
    border-radius: 18px;
    padding: 14px;
	margin-bottom: 15px;
	max-height: 260px;
    overflow-y: auto;
    overflow-x: hidden;	
}

.existing_followers_target_account
{
	background: #fff;
    border: 1px solid #ccc;
    border-radius: 18px;
    padding: 14px;
	margin-bottom: 15px;
	max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;	
}
.growth_summary_text_div{
	background-color: #bcbce93d;
	border-radius: 20px;
	padding: 2% 2%;
	box-shadow: 1px 1px 3px 1px #9696cb;
	overflow: auto;
    white-space: nowrap;
}
.analytic_link:hover{
	color: #010e20 !important;
	text-decoration-line: underline !important;
	margin-left: 5px;

}

#specific_user_info,
#followers_target_account_info,
#unfollow_specific_user_info_div
{
	max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;	
}
#edit_button{
	display: inline-block;
	padding: 5px 10px;
	font-size: 17px;
	font-weight: 520;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	outline: none;
	color: #fff;
	background-color: rgb(8, 131, 43);
	border: none;
	border-radius: 10px;
	width: 100px;
	height: 62px;
	margin-right: 22px;

}
#edit_button:hover {
	box-shadow:  0 0 10px rgba(0,0,0,.11), 0 5px 5px 0 rgba(0,0,0,0.19);
  }
.account_name
{
	color: var(--blue);
	font-size: 15px;
	margin-bottom: 0px;
	text-align: center;
}
.status,
.followers,
.following,
.posts
{
	color: var(--blue);
	font-size: 15px;
	margin-bottom: 0px;
	margin-left: 15px;
	text-align: center;
	
}


.status_mobile,
.followers_mobile,
.following_mobile,
.posts_mobile
{
	color: var(--blue);
	font-size: 15px;
	margin-bottom: 0px;
	text-align: center;
	display: flex;
	
}
#UnFollow-tab:hover,
#analytics-tab:hover,
#Follow-tab:hover{
	color: #001eaf;
    background-color: #d9f3f1;
    box-shadow: 1px 2px 4px;
}
.select2{
	width: 100% !important;
}

.select2-selection__choice__remove:hover{
	color: red !important;
}
.select2-selection__choice__display{
	color: #0037ff;
}

.single_day_div{
	padding-right: 0px;
}
.profile_div{
    width: 100%;
    min-height: 50em;
}
text-started-name{
	width: 100%;
}
.white-nowrap
{
	white-space: nowrap;
}
.filter_name
{
	font-size: 14px;
}
.global_confi_btn
{
	max-width: 350px;
}
::-webkit-scrollbar-track {
	background: #e0dede;
	box-shadow: inset 0 0 5px grey;
	border-radius: 6px;
  }
::-webkit-scrollbar {
	width: 8px;
	height: 12px;
}
::-webkit-scrollbar-thumb {
background: #888;
}
::-webkit-scrollbar-thumb:hover {
	background: #555;
  }
.tags_contain{
	height: 100px;
    overflow: auto;
}
.inner_error_logs
{
	max-height: 1000px;
	width: 100%;
	padding-right: 10px;
	display: flex;
	/* overflow-x: auto; */
	flex-direction: column;
}
.account_name_error_div{
	overflow-y: auto;
}
.innererrorheader
{
	border-bottom: 1px solid #3647de;
	margin-bottom: 20px;
	padding-bottom: 15px;
}
.error_title{
	display: inline-flex;
	width: 100%;
}
.errorHeader{
	text-align: center;
    margin: 0;
}
.cardheaderDiv{
	display: flex;
	justify-content: center;
	align-items: center;
}
.error_card
{
	max-height: 350px;
	height: 100%;
	max-width: 100%;
    overflow-y: auto;
	min-width: 500px;
	background-color: #fff;
	padding: 10px;
	margin: 10px 0px;
	border-radius: 10px;
	flex: none;
	border: 2px solid #3647de;
}
.error_card_crm.error_card.card {
    max-height: fit-content;
}
.error_card h5
{
	font-size: 22px;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
	color: rgb(3, 52, 158);
}
.error_card ul
{
	padding-left: 0px;
	/* text-align: center; */
}

.error_card ul li
{
	white-space: nowrap;
	font-size: 16px;
	margin-bottom: 10px;
}

.analytics-container {
  max-width: 1200px;
  margin: 20px auto;
  background: linear-gradient(145deg, #ffffff, #f5f7ff);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.analytics-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  max-width: 800px;
  overflow-x: auto;
  border-radius: 12px;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-left: auto;
  margin-right: auto;
}

.analytics-table th {
  background: linear-gradient(145deg, #f0f7ff, #e6effd);
  color: #1a365d;
  padding: 16px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #e2e8f0;
}

.analytics-table td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.analytics-table tr {
  transition: all 0.2s ease;
}

.analytics-table tr:nth-child(even) {
  background: #f8fafc;
}

.analytics-table tr:hover {
  background: #f0f7ff;
  transform: translateY(-1px);
}

.period-column {
  text-align: left !important;
  color: #2d3748;
  font-weight: 600;
  font-size: 0.9375rem;
}

.analytics-metric-value {
  background: linear-gradient(145deg, #ebf5ff, #e6effd);
  color: #1a365d;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-block;
  min-width: 70px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid rgba(66, 153, 225, 0.1);
}

.analytics-metric-value:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(66, 153, 225, 0.15);
  background: linear-gradient(145deg, #4299e1, #3182ce);
  color: white;
  border-color: transparent;
}

.period-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: linear-gradient(145deg, #ffffff, #f5f7ff);
  border: 1px solid rgba(66, 153, 225, 0.2);
  border-radius: 999px;
  font-size: 0.875rem;
  color: #2d3748;
  margin-right: 8px;
  transition: all 0.2s ease;
}

.period-badge:hover {
  background: linear-gradient(145deg, #f5f7ff, #ebf5ff);
  border-color: rgba(66, 153, 225, 0.4);
  transform: translateY(-1px);
}
.search_by_mode{
	padding-left: 0px !important;
}

/* .proxy_btn{
	margin-left: 40% !important;
} */
.mobile_show
{
	display: none !important;
}
.account_details
{
	background: #fff;
	padding: 10px;
	border-radius: 10px;
}
.account_details h2
{
	font-size: 15px;
}
#specific_user_loader_id,
#specific_unfollow_user_loader_id,
#follow_target_account_loader_id{
	position: absolute !important;
	margin-left: 18% !important;
}

.Changed{
	color: blue !important;
	font-weight: 200px;
}
.Deleted{
	color: red !important;
	font-weight: 200px;
}
.Created{
	color: rgb(7, 110, 7) !important;
	font-weight: 200px;
}
#historytableloader{
	position: absolute !important;
	left: 50% !important;
	top: 50% !important;
}
.font-1em
{
	font-size: 1em;
}
.navbar_user_status
{
    padding: 2px 10px;
    margin-top: 4px;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    border-radius: 12px;
}
.user_status_Active
{
	color: #008500;
    background: #c9ffbc;
}
.user_status_Pending
{
	color: #857500;
    background: #fffabc;
}
.user_status_Blocked,
.user_status_Stop
{
	color: #850000;
    background: #ffe0e0;
}
.user_status_Turbo
{
	color: #008585;
	background: #c4ffff;
}
.user_status_Init {
    color: #d76300;
    background: #ffeae1;
}
.user_status_Unfollow {
    color: #424242;
    background: #f1f1f1;
}
.account_name_navbar
{
	color: #000;
    font-weight: 700;
    margin-top: 6px;
    display: inline-block;
}

/* Error page  */
#errorTab{
	margin-top: 15px;
    margin-bottom: 30px;
	font-size: 23px;
}
#errorTab .nav-link.active{
	color: white;
    font-weight: bold;
    background: blue;
}
.select2-selection--multiple{
	min-height: 39px !important;
	border: 1px solid #dee2e6 !important;
}

@media only screen and (max-width: 991px)
{
	.sidebar
	{
		transform: translateX(-110%);
	}
	.sidebar.active
	{
		transform: translateX(0%);
	}
	.content_area
	{
		width: 100% !important;
	}
	.mobile_hide
	{
		display: none !important;
	}
	.mobile_show
	{
		display: flex !important;
	}
	.top-bar
	{
		width: 130px;
		padding: 0;
	}
	.top_bar_btn
	{
		height: auto !important;
		font-size: 15px !important;
	}
	.search_by_mode{
		padding-left: 0px !important;
	}
	.page-item
	{
		margin-bottom: 10px;
	}
}
@media only screen and (max-width: 557px)
{
	.inner_login
	{
		padding: 30px 30px;
		width: 100%;
		max-width: 700px;
		margin: auto;
		background: var(--white);
		box-shadow: 0 0 10px rgba(0,0,0,.2);
		border-radius: 10px;
	}
	.account_name
	{
		font-size: 15px;
	}
	/* .proxy_btn{
		margin-left: 9px !important;
	} */
}

/* Loading Screen */

.loading-screen
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(255, 255, 255, .78);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 99999;
}

@keyframes ldio-qz75prpdd2 {
  0% {
	opacity: 1;
	backface-visibility: hidden;
	transform: translateZ(0) scale(1.23,1.23);
  } 100% {
	opacity: 0;
	backface-visibility: hidden;
	transform: translateZ(0) scale(1,1);
  }
}
.ldio-qz75prpdd2 div > div {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #337dff;
  animation: ldio-qz75prpdd2 1s linear infinite;
}.ldio-qz75prpdd2 div:nth-child(1) > div {
  left: 148px;
  top: 88px;
  animation-delay: -0.875s;
}
.ldio-qz75prpdd2 > div:nth-child(1) {
  transform: rotate(0deg);
  transform-origin: 160px 100px;
}.ldio-qz75prpdd2 div:nth-child(2) > div {
  left: 130px;
  top: 130px;
  animation-delay: -0.75s;
}
.ldio-qz75prpdd2 > div:nth-child(2) {
  transform: rotate(45deg);
  transform-origin: 142px 142px;
}.ldio-qz75prpdd2 div:nth-child(3) > div {
  left: 88px;
  top: 148px;
  animation-delay: -0.625s;
}
.ldio-qz75prpdd2 > div:nth-child(3) {
  transform: rotate(90deg);
  transform-origin: 100px 160px;
}.ldio-qz75prpdd2 div:nth-child(4) > div {
  left: 46px;
  top: 130px;
  animation-delay: -0.5s;
}
.ldio-qz75prpdd2 > div:nth-child(4) {
  transform: rotate(135deg);
  transform-origin: 58px 142px;
}.ldio-qz75prpdd2 div:nth-child(5) > div {
  left: 28px;
  top: 88px;
  animation-delay: -0.375s;
}
.ldio-qz75prpdd2 > div:nth-child(5) {
  transform: rotate(180deg);
  transform-origin: 40px 100px;
}.ldio-qz75prpdd2 div:nth-child(6) > div {
  left: 46px;
  top: 46px;
  animation-delay: -0.25s;
}
.ldio-qz75prpdd2 > div:nth-child(6) {
  transform: rotate(225deg);
  transform-origin: 58px 58px;
}.ldio-qz75prpdd2 div:nth-child(7) > div {
  left: 88px;
  top: 28px;
  animation-delay: -0.125s;
}
.ldio-qz75prpdd2 > div:nth-child(7) {
  transform: rotate(270deg);
  transform-origin: 100px 40px;
}.ldio-qz75prpdd2 div:nth-child(8) > div {
  left: 130px;
  top: 46px;
  animation-delay: 0s;
}
.ldio-qz75prpdd2 > div:nth-child(8) {
  transform: rotate(315deg);
  transform-origin: 142px 58px;
}
.loadingio-spinner-spin-tol5bas9ild {
  width: 200px;
  height: 200px;
  display: inline-block;
  overflow: hidden;
}
.ldio-qz75prpdd2 {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  transform-origin: 0 0; /* see note above */
}
.ldio-qz75prpdd2 div { box-sizing: content-box; }

/* arrow added for account tools specific user */
.arrow-container {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px; /* Adjust spacing between text and arrows */
}

.up-arrow,
.down-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    cursor: pointer;
}

.up-arrow {
    border-bottom: 8px solid #ccc; /* Light gray arrow pointing up */
    margin-bottom: 3px; /* Adjust vertical positioning */
}

.down-arrow {
    border-top: 8px solid #ccc; /* Light gray arrow pointing down */
}

#copy-FB-textbox{
	text-align: center;
    width: 10%;
    padding-top: 7PX;
    padding-bottom: 4px;
    margin-left: 11px;
}
.sortable span
{
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: unset;
}
.interaction-stats {
    padding: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.stats-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stats-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #9d3300;
    border-radius: 50%;
    color: white;
    font-size: 10px;
}

.stats-title {
    color: #9d3300;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.stats-title-bold {
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.interaction-metrics {
    gap: 20px;
    background: white;
    padding: 10px 15px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    margin-top: 8px;
}

.metrics-column {
    flex: 1;
    position: relative;
}

.active_card .metrics-column:first-child::after {
    content: ''; 
    position: absolute; 
    right: -10px; 
    top: 0; 
    height: 100%; 
    width: 1px;
    background: rgba(0, 0, 0, 0.1);/* Change background to transparent */
}

.metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s;
}

.metric-item:hover {
    background-color: rgba(0, 123, 255, 0.03);
}

.metric-item:last-child {
    border-bottom: none;
}

.metric-label {
    color: #666;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.metric-value {
    color: #007bff;
    font-weight: 600;
    font-size: 12px;
    background: rgba(0, 123, 255, 0.1);
    padding: 1px 6px;
    border-radius: 4px;
}

/* Add decorative elements */
.over_card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.over_card:hover::before {
    opacity: 1;
}

.card-icon-img {
    width: 70px !important;
    height: 70px !important;
    mix-blend-mode: multiply !important;
    object-fit: cover;
}

.account-stats {
    padding: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin-top: 10px;
}

.account-metrics {
    background: #e3f1ff00;;
    padding: 10px 15px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.account-metrics .metric-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s;
}

.account-metrics .metric-item:last-child {
    border-bottom: none;
}

.account-metrics .metric-item:hover {
    background-color: rgba(72, 219, 251, 0.03);
}

.account-metrics .metric-label {
    color: #666;
    font-size: 12px;
    font-weight: 500;
}

.account-metrics .metric-value {
    color: #007bff;
    font-weight: 600;
    font-size: 12px;
    background: rgba(72, 219, 251, 0.1);
    padding: 1px 6px;
    border-radius: 4px;
}

.partner-div {
    padding: 15px;
    margin: 20px 0;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#partner-btn a {
	background-color: #1FBEC4;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s, transform 0.2s;
	display: inline-block;
	justify-content: center;
	margin: 0 auto;
}

#partner-btn {
	text-align: center;
}

#partner-btn a:hover {
	background-color: #1FBEC4;
	transform: scale(1.05);
}

#startell-link {
    text-decoration: none;
    color: white;
}

/* Related to Operations and Limits Section */
.limits-title {
	color: #343a40;
	font-weight: 600;
	font-size: 1.25rem;
	margin-bottom: 20px;
}

.action-title {
	margin-top: 15px;
	margin-bottom: 10px;
	font-size: 1.1rem;
}

.time-label {
	font-weight: 700;
	display: inline-block;
	width: 90px;
	margin-top: 8px;
	margin-bottom: 8px;
	vertical-align: middle;
}

.Operation-Limits .column-label {
	font-weight: 500;
	color: #495057;
	margin-bottom: 5px;
	font-size: 0.9rem;
}

.Operation-Limits .input-row .form-control {
	border: 1px solid #ced4da;
	border-radius: 4px;
	height: 38px;
	margin-bottom: 10px;
}

.input-row {
	margin-bottom: 5px;
}

/* Tooltip CSS */
.tooltip-inner
{
	font-size: 12px !important;
	max-width: 300px !important;
	white-space: normal !important;
}
.Sources-section .input-field {
	border: 1px solid #ced4da;
    border-radius: 4px;
    height: 38px !important;
    margin-bottom: 10px;
	width: 100%;
}
.specific_user_source_div .input-field {
	border: 1px solid #ced4da;
    border-radius: 4px;
    height: 38px !important;
    margin-bottom: 10px;
	width: 100%;
}
#analytics_table thead th {
	font-weight: bold; /* Make text bold */
    white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .stats-box {
    width: 49%;
    flex-direction: column;
  }
  .interaction-metrics {
    padding: 10px 7px;
  }
}

/*Responsive of analytics tables*/
@media (max-width: 768px) {
  .analytics-container {
    margin: 10px;
    padding: 15px;
  }

  .analytics-title {
    font-size: 1.25rem;
  }

  .analytics-metric-value {
    padding: 4px 10px;
    min-width: 60px;
    font-size: 0.875rem;
  }
}

/* Animation for metrics */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.analytics-metric-value {
  animation: fadeIn 0.5s ease-out forwards;
}

/* Stagger animation for rows */
.analytics-table tr:nth-child(1) {
  animation-delay: 0.1s;
}
.analytics-table tr:nth-child(2) {
  animation-delay: 0.2s;
}
.analytics-table tr:nth-child(3) {
  animation-delay: 0.3s;
}
.analytics-table tr:nth-child(4) {
  animation-delay: 0.4s;
}
.analytics-table tr:nth-child(5) {
  animation-delay: 0.5s;
}
