/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/*
    Add your custom styles here
*/

/* General Styling */

@media screen {
	html {
		margin-top: 0 !important;
	}
}


body {
	margin: 0;
	padding: 0;
	font-family: Sans-Serif !important;
}

.no-scroll {
  overflow: hidden;
}

.popup-overlay_background{
    display: none;
    height: 100%;
    width: 100%;
    background: #00000057;
    position: fixed;
    z-index: 1;
}

#admin-bar-inline-css html {
	display: none !important;
}

.site-pretty-btn {
	padding: 0.7vw 1.4vw !important;
	border: none !important;

	cursor: pointer !important;
	font-size: 1vw !important;

	border-radius: 0.5vw !important;
	background-color: black !important;
	color: white !important;
	border: 0.1vw solid black !important;
}

.site-pretty-btn:hover {
	color: black !important;
	background-color: transparent !important;
	border: 0.1vw solid black !important;
}

.site-pretty-btn.active {
	background-color: #fff !important;
	color: #000 !important;
}

.table-headers {
	display: flex;
	justify-content: space-between;
	max-width: 100%;
	font-size: 2vw;
	align-items: center;
	background: #000000;
	padding: 2vw;
	color: #fff;
}

.form-container {
	display: flex;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.402);
	padding: 1vw 1.5vw;
	border-radius: 3.5vw;
	width: 35vw;
	box-shadow: 0px 0.2vw 0.4vw rgba(0, 0, 0, 0.2);
	border: 0.2vw solid white;
}

.form-container .form-icon {
	font-size: 2vw;
	color: #fff;
	margin-right: 0.8vw;
}

.form-container .form-search {
	border: none;
	outline: none;
	background: transparent;
	flex: 1;
	font-size: 1.5vw;
	color: #fff;
	padding: 0;
}

#search-form {
	position: relative !important;
	text-align: center;
}

.form-container .form-search::placeholder {
	color: #fff;
	opacity: 0.8;
}

.form-container .search-btn {
	background-color: #ffffff;
	color: rgb(0, 0, 0);
	border: none;
	padding: 0.5vw 1.2vw;
	border-radius: 1.5vw;
	font-size: 1.5vw;
	cursor: pointer;
}

.form-container #suggestions {
	position: absolute;
	background: #ffffff94;
	border: 1px solid #ccc;
	width: 90%;
	/* Make it match the input field width */
	display: none;
	max-height: 10vw;
	overflow-y: auto;
	z-index: 9999;
	top: 100%;
	/* Align it directly below the input field */
	left: 2vw;
	border-radius: 1vw;
	box-shadow: 0 0.5vw 0.5vw rgba(0, 0, 0, 0.1);
}

.form-container #suggestions ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.form-container #suggestions li {
	padding: 8px;
	cursor: pointer;
	transition: background 0.2s ease-in-out;
	text-align: left;
}

.form-container #suggestions li:hover {
	background: #f0f0f0;
}

/* Notification Bell Container */
.notifications {
	position: relative;
	display: inline-block;
}

/* Bell Icon */
.bell-icon {
	font-size: 2.5vw;
	/* Slightly larger font size for better visibility */
	cursor: pointer;
	position: relative;
	transition: transform 0.3s ease, opacity 0.3s ease;
	color: #fff;
}

.bell-icon:hover {
	transform: scale(1.1);
	opacity: 0.85;
	/* Slight opacity change on hover for effect */
}

/* Notification Count Badge */
.notification-count {
	position: absolute;
	top: -0.4vw;
	right: -0.4vw;
	background-color: red;
	color: white;
	font-size: 1vw;
	/* Increased font size for better readability */
	padding: 0.4 0.7vw;
	/* Adjusted padding */
	border-radius: 50%;
	font-weight: bold;
	box-shadow: 0px 0.2vw 0.4vw rgba(0, 0, 0, 0.15);
	/* Soft shadow */
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 1.6vw;
	min-height: 1.6vw;
	text-align: center;
}

/* Dropdown Notification Popup */
.notification-popup {
	display: none;
	position: absolute;
	top: 3vw;
	/* More space between bell and popup */
	right: 0;
	width: 28vw;
	/* Slightly wider for a cleaner look */
	background: white;
	border-radius: 0.8vw;
	padding: 1.2vw;
	/* Softer shadow with spread */
	transition: opacity 0.3s ease, transform 0.3s ease;
	/* Combined transitions */
	transform: translateY(-0.7vw);
	/* Initial transform for smooth entry */
	z-index: 9999;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 1vw 2vw;
}

.notification-popup.show {
	display: block;
	opacity: 1;
	transform: translateY(0);
	/* Transition into view */
}

/* Popup Header */
.popup-content h4 {
	margin: 0;
	font-size: 1.5vw;
	/* Increased font size for prominence */
	padding-bottom: 0.6vw;
	border-bottom: 0.2vw solid #ddd;
	color: #333;
	font-weight: 600;
	text-transform: uppercase;

}

.popup-content .notification_list_meta {
	display: flex;
}

/* Notifications List */
.notification-popup ul {
	list-style-type: none;
	padding: 0;
	margin: 0.5vw 0;
	max-height: 22vw;
	overflow-y: auto;
}

/* Individual Notification Item */
.notification-popup li {
	padding: 0.5vw 1vw;
	border-bottom: 0.1vw solid #eee;
	display: flex;
	flex-direction: column;
	gap: 0.7vw;
	/* Reduced gap for better compactness */
	transition: background 0.3s ease;
	cursor: pointer;
}

.notification-popup li:hover {
	background-color: #f7f7f7;
	/* Subtle hover effect */
}

/* Notification Meta (Author & Date) */
.notification_list_meta p {
	margin: 0;
	font-size: 1vw;
	color: #888;
	font-style: italic;
}

/* Notification Title */
.mark-read {
	font-weight: bold;
	color: #333;
	margin-top: 0.4vw;
	display: block;
	font-size: 1vw;
	/* Slightly increased size for readability */
	transition: color 0.3s ease, text-decoration 0.3s ease;
}

.mark-read:hover {
	color: #0073e6;
	/* Brand color */
	text-decoration: underline;
}

/* No Notifications Message */
.notification-popup li.no-notifications {
	text-align: center;
	color: #888;
	font-size: 1vw;
	font-style: italic;
	padding: 1.4vw 0;
}


/* Table Styling */
.main-page {
	display: flex;
}

.page_templete .site-pretty-btn {
	padding: 0.7vw 1.4vw;
	border: none;

	cursor: pointer;
	font-size: 1vw;

	border-radius: 0.5vw;
	background-color: black;
	color: white;
	border: 0.1vw solid black;
}

.site-pretty-btn:hover {
	color: black !important;
	background-color: transparent;
	border: 0.1vw solid black;
}


.table-container .user-table__heading {
	background: #000;
	color: #fff;
}

.table-container .table-row {
	border-bottom: 0.1vw solid #e0e0e0;
}

.table-container .table-row:nth-child(even) {
	background: #c7c7c7;
}

.table-container .user-table__data {
	border: 0;
}

.user-profile {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	cursor: pointer;
	height: 100%;
	width: 100%;
	overflow-x: hidden;
}

.user-profile .user-avatar {
	width: 4vw;
	height: 4vw;
	border-radius: 50%;
	object-fit: cover;
}

.user-profile .user-name {
	color: #fff;
	font-weight: 400;
	font-size: 1vw;
	margin-bottom: 1vw;
}


.none-head {
	display: none
}

.main-page {
	display: flex;
	/* 	margin-top: -5px */
}

/* ====== Common Sidebar Styling ====== */
.admin-header-sidebar,
.user-header-sidebar {
	width: 20%;
	background-color: #000;
	color: white;
	padding: 1.3vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: sticky;
	top: 0;
	height: 100dvh;
	overflow-y: hidden;
	transition: width 0.5s ease-in-out;
}

.admin-header-sidebar.collapsed,
.user-header-sidebar.collapsed {
	width: 7vw;
}

/* Logo Styling */
.custom-sidebar-logo img {
	object-fit: contain !important;
}

/* Menu Container */
.menu-admin-header-menu-container {
	width: 100%;
}

/* Menu List */
.menu {
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

.menu li {
	margin-bottom: 0.7vw;
}

.user-header-sidebar .logout-btn {
	width: 84%;
}

.admin-header-sidebar .logout-btn {
	width: 78%;
}

/* Menu Links & Logout Button */
.menu li a,
.logout-btn {
	text-decoration: none;
	color: white;
	font-size: 1vw;
	display: flex;
	align-items: center;
	padding: 0.8vw;
	border-radius: 0.6vw;
	transition: 0.3s;
}

/* Hover & Active States */
.menu li a:hover,
.menu li.current-menu-item a,
.logout-btn:hover {
	background-color: #1C2541;
	font-weight: bold;
	color: #fff;
}

/* Icons */
.menu li a::before {
	content: "📁";
	margin-right: 0.7vw;
	font-size: 1.2vw;
}


.admin-header-sidebar .menu li:nth-child(1) a::before {
    content: "\f080"; /* chart-bar icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 0.5vw;
}


.admin-header-sidebar .menu li:nth-child(2) a::before {
    content: "\f15c"; /* file-alt icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    margin-right: 0.5vw;
}


.admin-header-sidebar .menu li:nth-child(3) a::before {
    content: "\f007"; /* user icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 0.vw;
}

.user-header-sidebar .menu li:nth-child(1) a::before {
    content: "\f298"; /* wpforms icon */
    font-family: "Font Awesome 5 Brands"; /* Note: this one is from Brands set */
    font-weight: 400;
    margin-right: 0.5vw;
}

.user-header-sidebar .menu li:nth-child(2) a::before {
    content: "\f0ce"; /* table icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 0.5vw;
}

.user-header-sidebar .menu li:nth-child(3) a::before {
    content: "\f15c"; /* file-alt icon for drafts */
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    margin-right: 0.5vw;
}



.logout-btn::before {
    content: "\f2f5"; /* sign-out-alt icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.3vw;
    margin-right: 0.5vw;
}


.user-header-sidebar .sidebar-widget:nth-child(2) {
	height: 5vw;
}

/* Sidebar Toggle */
#sidebar-toggle {
	background-color: black;
	color: white;
	border: none;
	cursor: pointer;
	font-size: 2vw;
	padding: 0.5vw;
	width: 100%;
	/*margin-top: auto;*/
	border-radius: 0.4vw;
}

/* Collapsed State */
.admin-header-sidebar.collapsed .logout-btn,
.user-header-sidebar.collapsed .logout-btn,
.admin-header-sidebar.collapsed .menu li a,
.user-header-sidebar.collapsed .menu li a {

	font-size: 0;
}

.admin-header-sidebar.collapsed .logout-btn::before,
.user-header-sidebar.collapsed .logout-btn::before,
.admin-header-sidebar.collapsed .menu li a::before,
.user-header-sidebar.collapsed .menu li a::before {
	font-size: 1.5vw;
	margin-right: 0;
}

.admin-header-sidebar.collapsed .custom-sidebar-logo,
.user-header-sidebar.collapsed .custom-sidebar-logo,
.admin-header-sidebar.collapsed .user-name,
.user-header-sidebar.collapsed .user-name {
    
	display: none !important;
}

#mobile-sidebar-toggle {
	display: none;
	text-align: end;
		background: #000;
		color: #fff;
		border: none;

		border-radius: 1vw;
		padding: 0 2vw;
}

/* User Management */

.page-container {
	width: 100%;
	background: hsl(0deg 0% 89.76%);
	min-height: 100dvh;
	display: flow-root;
	padding: 0;
	margin: 0;
}

.page-container .single-document-status,
.page-container .single-user-role {
	position: relative;
}

.page-container .single-status-dropdown,
.page-container .single-role-dropdown {
	position: absolute;
	top: 1.3vw;
	right: 1vw;
	font-size: 1.3vw;
	background: white;
	padding: 0.5vw 2vw;
	border-radius: 0.5vw;
	box-shadow: 0 0.3vw 0.7vw #00000038;
	display: none;
}

.page-container .single-status-dropdown ul,
.page-container .single-role-dropdown ul {
	list-style: none;
	padding: 1vw 0;
	line-height: 2vw;
	text-align: center;
}

.page-container .single-status-dropdown ul li,
.page-container .single-role-dropdown ul li {
	border-bottom: 0.1vw solid #000;
	margin-bottom: 0.7vw;
}

.page-container .single-status-dropdown ul li:hover,
.page-container .single-role-dropdown ul li:hover {
	background: #efefef;
}

.table-container {
	width: 95%;
	margin: auto;
	border-radius: 0.7vw;
}

.main-page .left_top_dropdown {
	width: 9vw;
	border-top-left-radius: 0.7vw !important;
	font-size: 1vw;
	padding: 1vw 1vw;
	border: 0.1vw solid #000;
	appearance: none;
	/* Remove default arrow in modern browsers */
	-webkit-appearance: none;
	/* Safari */
	-moz-appearance: none;
	/* Firefox */
	background-image: url('data:image/svg+xml;utf8,<svg fill="%23000" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 16px;
}
.main-page .left_top_dropdown:focus{
    outline: 0;
}
.main-page .right_top_dropdown:focus{
    outline: 0;
}
.main-page .right_top_dropdown {
	width: 15vw;
	border-top-right-radius: 0.7vw !important;
	font-size: 1vw;
	padding: 1vw 1vw;
	border: 0.1vw solid #000;
	appearance: none;
	/* Remove default arrow in modern browsers */
	-webkit-appearance: none;
	/* Safari */
	-moz-appearance: none;
	/* Firefox */
	background-image: url('data:image/svg+xml;utf8,<svg fill="%23000" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 16px;
}

.table-container .filter-dropdowns {
	gap: 1vw;
}

.table-container .bulk-dropdowns {
	width: fit-content;
	gap: 1vw;
}

.main-page .pointer {
	cursor: pointer;
}
.main-page .arrow {
  cursor: default;
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
  user-select: none;         /* Standard */
}
.main-page .pretty-anchor {
	color: #000;
	text-decoration: none;
}

.main-page .pretty-anchor:hover {
	color: #000;
	text-decoration: underline;
	cursor: pointer;
}

.table-container .checkbox-column {
	text-align: center;
}

.table-container .checkbox-column input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 1vw;
	height: 1vw;
	border-radius: 0.2vw;
	border: 0.1vw solid #000;
	cursor: pointer;
	position: relative;
	outline: none;
	/* Remove default focus outline */
	background: #fff;
}

/* Checked state styling */
.table-container .checkbox-column input[type="checkbox"]:checked {
	background-color: #000;
	/* Or your preferred checked color */
}

/* Optional: Add a custom checkmark */
.table-container .checkbox-column input[type="checkbox"]:checked::before {
	content: "";
	position: absolute;
	left: 0.3vw;
	top: 0.1vw;
	width: 0.4vw;
	height: 0.7vw;
	border: solid white;
	border-width: 0 0.15vw 0.15vw 0;
	transform: rotate(45deg);
}

.table-header-user-managment tr th,
.table-header-user tr th,
.table-header-all tr th {
	font-size: 1vw;
	text-transform: uppercase;
	padding: 1.5vw 1vw;
	border: 0;
	background: #000;
	color: #fff;
}

.table-header-all tr th {
	&:nth-child(1) {
		width: 3%;
	}

	&:nth-child(2) {
		width: 27%;
	}

	&:nth-child(3) {
		width: 15%;
	}

	&:nth-child(4) {
		width: 17%;
	}

	&:nth-child(5) {
		width: 22%;
	}

	&:nth-child(6) {
		width: 8%;
	}
}

.table-header-user tr th {
	&:nth-child(1) {
		width: 3%;
	}

	&:nth-child(2) {
		width: 25%;
	}

	&:nth-child(3) {
		width: 23%;
	}

	&:nth-child(4) {
		width: 25%;
	}

	&:nth-child(5) {
		width: 15%;
	}
}

.table-header-user-managment tr th {
	&:nth-child(1) {
		width: 3%;
	}

	&:nth-child(2) {
		width: 20%;
	}

	&:nth-child(3) {
		width: 14%;
	}

	&:nth-child(4) {
		width: 14%;
	}

	&:nth-child(5) {
		width: 12%;
	}

	&:nth-child(6) {
		width: 12%;
	}
		&:nth-child(7) {
		width: 16%;
	}
}

.table-body-user-managment .user-detials {
	display: flex;
	align-items: start;
	gap: 1vw;
}
.table-body-user-managment .user-detials .pretty-anchor{
    align-self: Center;
}
.table-body-user-managment .user-avatar {
	width: 3vw;
	height: 3vw;
	border-radius: 50%;
}

.table-body-draft .table-data,
.table-body-user-managment .table-data,
.table-body-user .table-data,
.table-body-all .table-data {
	border: 0;
	font-size: 1.05vw;
	letter-spacing: 0.03vw;
	padding: 1.5vw 1vw;
	text-transform: capitalize;
	vertical-align: middle;
}

.table-body-all  .checkbox-data ,
.table-body-user .checkbox-data ,
.table-body-draft  .checkbox-data ,
.table-body-user-managment .checkbox-data{
         vertical-align: baseline;
    padding-top: 2vw !important;
 }
.table-body-draft .table-data,
div,
.table-body-user-managment .table-detail div,
.table-body-user .table-detail div,
.table-body-all .table-detail div {
	margin: 0;
}

.main-page .main-heading {
	font-weight: bold;
	font-size: 3vw;
}
	.main-page .sub-heading  {
	font-size: 2vw;
	font-weight: 700;
	margin-bottom: 1.3vw;
}
.main-page .font-bold {
	font-weight: bold;
	font-size: 2vw;
	margin-bottom: 0;
}

.main-page .font-semibold {
	font-weight: 600;
	font-size: 1vw;
	letter-spacing: 0.03vw;

}

.main-page .font-medium {
	font-weight: 500;
	font-size: 1vw
}

.main-page .font-normal {
	font-weight: 400;
	font-size: 1vw;
	margin-block: 0;
}

.main-page .font-light {
	font-weight: 300;
	font-size: 0.8vw
}
.feedback-container {
    padding-inline: 1vw;
}
.feedback-container .feedback-author-name{
     margin-bottom: 0;
    font-size: 1.3vw;
    font-weight: 600;
    margin-block: 0 !important;
}
.feedback-container .feedback-author-email{
        margin-bottom: 0;
    font-size: 1.1vw;
    font-weight: 500;
      margin-block: 0 !important;
}
.feedback-container .feedback-author-avatar{
    border-radius: 50%;
    height: 4vw;
}
.feedback-container .feedback-author-box{
    width: 100%;
}
.feedback-container .feedback-text{
        margin-left: 4.2vw;
    margin-top: 1vw;
    font-size: 1.2vw;
    margin-bottom: 0;
    margin:  1vw 0 1vw 4.2vw !important;
}
.feedback-container .feedbact-replies-container{
    display: flex;
    border: 0.1vw solid;
    border-radius: 0.5vw;
    width: -webkit-fill-available;
    margin-left: 3vw;
    margin-block: 2vw;
}

.feedback-container .feedbact-replies-form{
        width: -webkit-fill-available;
    border: 0;
    background: transparent;
    font-size: 1.5vw;
    padding: 1vw 0vw 1vw 2vw;
}
.feedback-container .feedbact-replies-form:focus{
    outline: 0;
}
.feedback-container .feedback-replies-btn{
    font-size: 1.8vw;
    background: transparent;
    border: 0;
    padding: 1vw 2vw;
    color: #000;
}
.feedback-container .leave-feedback-container{
    display: flex;
    border: 0.1vw solid;
    border-radius: 0.5vw;
    width: -webkit-fill-available;
    margin-left: 0;
    margin-block: 1vw 0 2vw 0;
}




/* Popup Background */
.popup-overlay {
    display: none;
    position: fixed; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-height: 80%; /* Max height = 80% of viewport */
    height: auto; /* Allow auto height until it reaches max */
    overflow-y: auto; /* Scroll only if content exceeds max-height */
    z-index: 2;
    background: white; /* Optional: background for visibility */
    padding: 20px; /* Optional: spacing */
   
  border-radius: 0.5vw;
}


/* Popup Box */
.popup-box {


	text-align: center;
	position: relative;

	/* Ensure it does not exceed screen height */
}

.popup-box p {
	font-size: 1.3vw;
	padding: 0;
	margin: 0;
}

.popup-box .closeDeletePopup {
	background: #fff !important;
	color: #000 !important;
}



.popup-box button:hover {
	opacity: 0.8 !important;
}

.display-justify-between {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.display-justify-around{
    display: flex;
    justify-content: space-around;
}
.display-place-center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.display-place-start {
	display: flex;
	justify-content: start;
	align-items: center;
	gap:0.5vw;
}
/* Buttons */
.popup-buttons button {
	padding: 0.7vw 1vw;
	margin: 0.7vw;
	border: none;
	cursor: pointer;
	border-radius: 0.3vw;
	font-size: 1vw;
	color: white;
}

.popup-buttons .pending {
	background: #ffcc00;
}

.popup-buttons .approve {
	background: #28a745;
}

.popup-buttons .reject {
	background: #dc3545;
}

.popup-box .new-user-form-field {
	margin-bottom: 1vw;
	font-size: 1vw;
}

.popup-box .user-form-label {

	text-align: start;
	margin-bottom: 0.5vw;
	width: 100%;
}

.popup-box .user-form-input {
	border: 0.1vw solid #000;
	border-radius: 0.5vw;
	padding: 0.5vw 1vw;
	margin-bottom: 0.5vw;
}

.popup-box .user-form-input:focus {
	outline: 0;
}


.current-user-pagination,
.all-user-pagination,
.user-managment-pagination,
.draft-condo-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6vw;
	font-family: Arial, sans-serif;
	margin-bottom: 5vw;
}

.current-user-pagination .pagination-btn,
.all-user-pagination .pagination-btn,
.user-managment-pagination .pagination-btn,
.draft-condo-pagination .pagination-btn {
	background: white;
	border: 0.1vw solid #000;
	padding: 0.4vw 0.8vw;
	border-radius: 0.4vw;
	cursor: pointer;
	color: #000;
	font-size: 1vw;
}

.current-user-pagination .pagination-btn:hover,
.all-user-pagination .pagination-btn:hover,
.user-managment-pagination .pagination-btn:hover,
.draft-condo-pagination .pagination-btn:hover {
	background: #000;
	color: white;
}

.current-user-pagination #current-user-paginationList,
.all-user-pagination #all-user-paginationList,
.user-managment-pagination #userManagment-paginationList,
.draft-condo-pagination #draft-condo-paginationList {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.current-user-pagination #current-user-paginationList li,
.all-user-pagination #all-user-paginationList li,
.user-managment-pagination #userManagment-paginationList li,
.draft-condo-pagination #draft-condo-paginationList li {
	margin: 0 0.3vw;
	padding: 0.4vw 0.8vw;
	border: 0.1vw solid #000;
	border-radius: 0.4vw;
	cursor: pointer;
	color: #000;
	font-size: 1vw;
}

.current-user-pagination #current-user-paginationList li.active,
.all-user-pagination #all-user-paginationList li.active,
.user-managment-pagination #userManagment-paginationList li.active,
.draft-condo-pagination #draft-condo-paginationList li.active {
	background: #000;
	color: white;
}


.page-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #000;
	margin: 1.5vw 2vw;
}

.page-header h1 {
	margin: 0;
}

.page-header #notificationBell {
	color: black !important;
}

.profile-container {

	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.profile-container .profile-wrapper {
	display: flex;
	gap: 7.5vw;
}

.profile-container .left-panel {
	text-align: center;
}

.profile-container .profile-avatar {
	width: 13vw;
	height: 13vw;
	border-radius: 50%;
	border: 0.2vw solid #000;
	object-fit: cover;
	margin-bottom: 1.3vw;
}

.profile-container .username {
	font-size: 2.2vw;
	font-weight: bold;
	margin-bottom: 1.5vw;
}


.profile-container .right-panel {
	display: flex;
	flex-direction: column;
	gap: 1.5vw;
	margin-bottom: 2.5vw;
	/* Add some margin to push the tabs down */
}

.profile-container .detail-item {
	font-size: 1.5vw;
	padding-bottom: 0.8vw;
	border-bottom: 0.1vw solid #ddd;
}

.profile-container .document-section {
	width: 100%;
	display: flex;
    flex-direction: column;
    align-items: center;
	/* To make it full width */
}


.document-section .tabs {
	display: flex;
	gap: 1.3vw;
	margin-bottom: 1.3vw;
}


.document-section .tab-content {
	display: none;
}

.document-section .tab-content.active {
	display: block;
}
.document-section .condo-list{
    width: 70vw;
}
.document-section .condo-list-header{
    font-size: 1.3vw;
    font-weight: 500;
}
.document-section .condo-list-body{
    font-size: 1.2vw;
}
.document-section .condo-list li span{
    width:25%;
    text-align: center;
}
.document-section .document-item {
	padding: 0.7vw 0;
	border-bottom: 0.1vw solid #ddd;
}

.modal-overlay {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	/* height: 100vh; */
	/* background-color: rgba(0, 0, 0, 0.6); */
	justify-content: center;
	align-items: center;
}


.modal-content {
	width: 30vw;
	background-color: white;
	padding: 1.3vw 2vw;
	border-radius: 1.3vw 1.3vw 0 0;
	box-shadow: 0px -0.3vw 1vw rgba(0, 0, 0, 0.2);
	animation: slideUp 0.4s ease-in-out;
}

.modal-content input {
	width: 100%;
	margin-bottom: 1vw;
	padding: 0.7vw 0.8vw;
	border: 0.1vw solid #ccc;
	border-radius: 0.6vw;
	font-size: 1.2vw;
}


@keyframes slideUp {
	from {
		transform: translateY(100%);
	}

	to {
		transform: translateY(0);
	}
}

.document-details-container {
	display: flex;
	flex-direction: column;
	margin: auto;
	width: 100%;
	padding:0 2vw 2vw;
}

.document-header {
	justify-content: center;
	padding: 0.7vw 0;
	border-bottom: 0.2vw solid #000;
	display: flex;
	align-items: baseline;
	gap: 3vw;
}

.document-title {
	font-size: 2.5vw;
	margin: 0 padding:0;
}

.document-url {
	margin-bottom: 0;
}

.document-url:hover .pretty-anchor {
	color: black;
}

.document-url .pretty-anchor {
	color: white;
}

.section-divider {
	border-bottom: 0.2vw solid #ddd;
	margin: 1.4vw 0;
}

.document-details-container .details-card-body{
     margin-left: 0.65vw;
     margin-top: 1vw;
}
.document-details-container .details-card-detail{
    display: flex;
    gap: 1vw;
    align-items: center;
}
.document-details-container .details-card-header{
    display: flex;
    gap: 0.5vw;
    align-items: center;
}
.document-details-container .details-card-detail .pretty-anchor{
    font-size: 1.2vw;
}
.payment-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2vw 0.7vw;
  border-radius: 1vw;
  font-weight: 600;
  font-size: 1vw;
  color: inherit;           /* so SVG stroke can use currentColor */
}

.payment-badge svg {
  margin-right: 0.4vw;
}

.payment-badge svg path {
  stroke: currentColor;     /* inherit from .payment-badge color */
}

.payment-badge--paid {
  background-color: #dcfce7;
  color: #065f46;
}

.payment-badge--unpaid {
  background-color: #fee2e2;
  color: #991b1b;
}

.document-details-container .details-card-header h3{
    margin-bottom: 0 !important;
}
.document-details-container .checklist-answer-yes{
    background: #dcfce7;
    color: #065f46;
    padding: 0.2vw 0.7vw;
    border-radius: 1vw;
    font-weight: 600;
    font-size: 1vw;
      cursor: default;
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
  user-select: none;         /* Standard */
}
.document-details-container .date-answer{
    font-weight: 400;
    color: #111827;
    background: aliceblue;
    padding: 0.2vw 0.7vw;
    font-size: 1vw;
    border-radius: 1vw;
      cursor: default;
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
  user-select: none;         /* Standard */
}
.document-details-container .checklist-answer-no{
    background:#fee2e2;
    color:#991b1b; 
    padding: 0.2vw 0.7vw;
    border-radius: 1vw;
    font-weight: 600;
    font-size: 1vw;
      cursor: default;
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
  user-select: none;         /* Standard */
}

.document-details-container .checklist-answer-na{
    background:#f3f4f6;
    color:#4b5563;
    padding:0.5vw 0.7vw;
    border-radius:1vw;
    font-weight:600;
    font-size:1vw;
}
.document-details-container .calendar-icon{
    align-self: flex-start;
    margin-top: 1vw;
    font-size: 1.5vw;
}
.document-details-container .amenities-icon{
    align-self: start;
    margin-top: 0.8vw;
}
.document-details-container .dot-icon{
    align-self: start;
    margin-top: 0.8vw;
}
.document-details-container .details-card .details-card-detail i{
    width: 5%;
}
.document-details-container .details-card .details-card-detail svg{
    width: 5%;
}
.document-details-container .details-card .details-card-detail p{
    width: 95%;
}
.document-details-container .building-icon{
        align-self: self-start;
    font-size: 1.3vw;
    margin-top: 0.9vw;
}
.document-details-container .amenity-badge{
        background: aliceblue;
    padding: 0.2vw 1vw;
    border-radius: 1vw;
    font-size: 1.2vw;
      cursor: default;
  -webkit-user-select: none; /* Chrome/Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
  user-select: none;         /* Standard */
}
.document-details-container .url_link{
    background: aliceblue;
    padding: 0.5vw 1vw;
    border-radius: 1vw;
  
}

.document-details-container .url_link_container{
        gap: 0.5vw;
    display: flex;
    flex-direction: column;
      margin-left: 1vw;
    margin-top: 0.5vw;
}
.document-details-container #amenities-display{
        display: flex;
    flex-wrap: wrap;
    gap: 1vw;
    justify-content: start;
}
.document-details-container .financial-icon{
    align-self: flex-start;
    margin-top: 0.6vw;
}
.document-details-container .pdf-icon{
    font-size:1.3vw;
}
.document-details-container .display-two-inline{
    display: flex;
}
.document-details-container .display-two-inline div{
    width: 50%;
}
.document-details-container .display-two-inline .details-card-detail svg{
    width: auto;
}
.document-details-container .display-two-inline .details-card-detail p{
    margin: 0 !important;
}
.document-details-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.4vw;
}

.details-card .author-box{
    display: flex;
    align-items: center;
    gap: 1vw;
  
}
.details-card .author-box div{
      font-size: 1.2vw !important;
}
.details-card .author-box div div:first-child{
    margin-bottom: 0.5vw;
}

.details-card {
	background: #fff;
	padding: 2vw;
	border-radius: 0.7vw;
	box-shadow: 0 0.1vw 0.7vw rgba(0, 0, 0, 0.1);
}
.details-card h3{
    margin-bottom: 1vw !important;
}

.details-card p {
	margin: 0.5vw 0 !important;
	font-size: 1.2vw !important;
}
.details-card p strong{
	margin: 0.5vw 0;
	font-size: 1.2vw !important;
}

.condo-info-cards {
    margin-top: 1.5vw;
	padding:2vw;
	background: #fff;
	border-radius: 0.7vw;
	box-shadow: 0 0.1vw 0.7vw rgba(0, 0, 0, 0.1);
}

.condo-info-cards p {
	margin: 0.5vw 0 !important;
	font-size: 1.2vw !important;
}

.condo-info-cards p strong {
	margin: 0.5vw 0;
	font-size: 1.2vw !important;
}

.user-avatar {
	width: 4vw;
	height: 4vw;
	border-radius: 50%;
}

.feedback-thread-container {
	padding: 0;
}

.feedback-replies {
    list-style: none;
    padding: 0;
    margin: 2vw 0 0 4vw;
}


.reply-form {
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.reply-form textarea {
	width: 100%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
}

.reply-btn {
	background: #007bff;
	color: #fff;
	border: none;
	padding: 8px 12px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 14px;
	align-self: flex-end;
}

.reply-btn:hover {
	background: #0056b3;
}

@media (max-width: 768px) {
	.document-details-grid {
		grid-template-columns: 1fr;
	}
}

.custom-login-form .elementor-field-type-text .elementor-field-label {
	font-size: 1vw;
}

.custom-login-form .elementor-field-type-text .elementor-field {
	padding: 0.5vw 1vw;
	font-size: 1.2vw;
	height: 3vw !important;
}

.notification-container {
	width: 90%;
	margin: auto;
}

.notification-container .notification-heading {
	font-size: 2.5vw;
	margin: 1vw 0;
}

.notification-container .notification {
	margin-bottom: 1vw;
	line-height: 2vw;
}

.notification-container .font-medium {
	margin-bottom: 0;
}

.user-search-container {
	position: relative;
	width: 100%;
	max-width: 300px;
}

.user-search-input {
	width: 100%;
	padding: 0.7vw;
	border: 0.1vw solid #ccc;
	border-top-left-radius: 0.4vw;
	font-size: 1vw;
	outline: none;
}

.user-search-input:focus {
	border-color: #0073aa;
	box-shadow: 0 0 0.4vw rgba(0, 115, 170, 0.3);
}

.user-suggestions {
	list-style: none;
	padding: 0;
	margin: 0.4vw 0 0;
	border: 0.1vw solid #ccc;
	border-radius: 0.5vw;
	max-height: 15vw;
	overflow-y: auto;
	background: white;
	position: absolute;
	top: 3.2vw;
	width: 100%;
	z-index: 1000;
	display: none;
	box-shadow: 0 0.2vw 0.3vw rgba(0, 0, 0, 0.1);
}

.user-suggestion-item {
	padding: 0.7vw;
	cursor: pointer;
	transition: background 0.2s ease-in-out;
}

.user-suggestion-item:hover {
	background: #f0f0f0;
}

.no-users {
	padding: 0.7vw;
	color: #999;
	text-align: center;
}


.condo_whitelist_form {
	width: 90%;
	margin: auto;
	padding: 1vw 0;
}

.condo_whitelist_form .site-pretty-btn {
	margin: 1vw 0;
	align-self: end;
}

.condo_whitelist_form .form_main_heading {
	font-weight: bold;
	font-size: 3vw;
	margin-bottom: 0vw;
}

.condo_whitelist_form .form_sub_heading {
	font-size: 2vw;
	margin-bottom: 1.3vw;
}

.condo_whitelist_form .form-feilds {
	margin-bottom: 1.1vw;
	display: flex;
	flex-direction: column;
	gap: 0.8vw;
	font-size: 1.2vw;
	letter-spacing: 0.05vw;
	line-height: 1.3;
}

.condo_whitelist_form .input-fields {
	background: #d8e0e7;
	border: 0;
	border-radius: 0.5vw;

	padding: 0.8vw 1vw;
}

.condo_whitelist_form .input-fields:focus {
	outline: 0;
}

.condo_whitelist_form .two-input-box {
	display: flex;
	width: 100%;
	gap: 1vw;

	>*:nth-child(n) {
		width: 50%;
	}

}

.condo_whitelist_form .radio-btn {
	display: flex;
	gap: 1vw;
	margin: 0.3vw 0;

	>*:nth-child(n) {
		display: flex;
		align-items: center;
		gap: 0.6vw;
	}
}

.condo-list,
.condo_whitelist_form #amenities_list_dropdown {
	font-size: 1vw;
	list-style: number;
	padding-left: 0;

	>*:nth-child(n) {
		border-bottom: 0.1vw solid #000;
		margin-bottom: 1vw;
		padding: 0.5vw 1vw 0.5vw 0vw;
	}
}

.condo_whitelist_form .signature-box {
	display: flex;
	align-items: center;
	/* Center items vertically */
	gap: 1vw;
	flex-wrap: wrap;
	/* Prevents layout breaking on small screens */
}

.condo_whitelist_form label {
	font-weight: bold;
	margin-right: 0.7vw;
	margin-bottom: 0;
}
.condo_whitelist_form #signature_upload{
    margin-block: 1.3vw;
}
.condo_whitelist_form canvas {
	border: 0.1vw solid #4a4a4a;
	/* Darker border for visibility */
	border-radius: 0.3vw;
	background: #d8e0e7;
	/* Pure white background */
	box-shadow: 0.1 0.1vw 0.7vw rgba(0, 0, 0, 0.1);
	cursor: crosshair;
	/* Helps indicate it’s drawable */
	max-width: 100%;
	/* Ensures responsiveness */
}

.user-account .login-user-image {
	width: 3vw;
	height: 3vw;
	border-radius: 50%;
}

.user-account .account-dropdown {
	background: transparent;
	border: 0;
	width: fit-content;
	font-size: 1.2vw;
	font-family: sans-serif;
	color: #fff;
	padding: 1vw 1vw;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg fill="%23fff" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 16px;
}

.user-account .account-dropdown:focus {
	outline: 0;
}

.user-account .custom-dropdown-wrapper {
	position: relative;
	display: inline-block;
	font-family: sans-serif;
	font-size: 1.2vw;
	color: #fff;
	width: 7.7vw;
	cursor: pointer;
	user-select: none;
}

.user-account .custom-dropdown-selected {
	padding: 1vw;
	background: transparent;
	border: 0;
	border-radius: 0.2vw;
	background-image: url('data:image/svg+xml;utf8,<svg fill="%23fff" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
	background-repeat: no-repeat;
	background-position: right 0.7vw center;
	background-size: 1vw;
}

.user-account .custom-dropdown-options {
	list-style: none;
	padding: 0;
	margin: 0;
	position: absolute;
	background: #333;
	color: #fff;
	width: 100%;
	border-radius: 0.2vw;
	box-shadow: 0 0.1 0.2vw rgba(0, 0, 0, 0.3);
	display: none;
	z-index: 1000;
}

.user-account .custom-dropdown-options li {
	padding: 0.7vw;
	transition: background 0.2s;

}

.user-account .custom-dropdown-options li a {
	color: #fff;
}

.user-account .custom-dropdown-options li:hover {
	background: #555;
}

.joinus-btn {
	cursor: pointer !important;
	border: 0 !important;
	padding: 0.8vw 2.8vw !important;
	font-size: 1.2vw !important;
	font-family: sans-serif !important;
}

.line_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin-bottom: 1.5vw;
}

/* Line connectors */
.text_circle:after,
.text_circle:not(:first-child):before {
	content: "";
	position: absolute;
	top: 60%;
	transform: translateY(-50%);
	height: 0.05vw;
	width: 50%;
	z-index: 1;
}

.text_circle:after {
	right: 0;
}

.text_circle:not(:first-child):before {
	left: 0;
}

/* Completed step color */
.text_circle.done:after,
.text_circle.done+.text_circle:before {
	background-color: #000;
}

/* Circle container */
.tvar {
	height: 3vw;
	width: 3vw;
	border: 0.1vw solid #000;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0.7vw auto 0;
	z-index: 2;
	position: relative;
	text-decoration: none;
}

.tvar:hover {
	background: #000;
	color: #fff;
	text-decoration: none;
}

.tvar.active {
	background: #000;
	color: #fff;
	text-decoration: none;
}

.tvar span {
	color: #000;
	font-size: 1.2vw;
}

.tvar:hover span {
	color: #fff;
}

.tvar.active span {
	color: #fff;
}

/* Popover styling */
.popover {
	background-color: #fff;
	border: 1px solid #000;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.popover-body {
	color: #333;
	font-size: 13px;
	padding: 10px 15px;
}

.table-content {
	margin-top: 0.5vw;
}

.main-page .display-justify-end {
	display: flex;
	justify-content: end;
	gap:1vw;
}

#notificationsList {
	padding: 2vw;
}

#sidebar-overlay {
	display: none;
	width: 100%;
	height: 100%;
	background: ;
	background: #0000003b;
	position: fixed;
	z-index: 1;
}

.dropdowns-flex{
    display: flex;
    justify-content: space-between;
}
.dashbord-container{
    margin-inline: 2vw;
}
.statistic-container{
    display:flex;
    gap:1.5vw;
}
.statistic-container .display-justify-between {
    width:100%;
    gap: 1.5vw;
}

.statistic-container .statistic-child{
    width: 50%;
    background: #fff;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.05);
    padding: 1.5vw;
    border-radius: 0.3vw;
}

.statistic-container .statistic-name-box{
 font-size: 1.1vw;
}
.statistic-container .statistic-icon{
    padding: 0.1vw;
    border-radius: 50%;
    background: hsl(0deg 0% 89.76%);
    width: 2vw;
    height: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.statistic-container .statistic-icon:hover{
    scale: 1.05;
}
.statistic-container .statistic-icon i{
margin-top: 0.2vw;
}
.statistic-container .statistic-count-box{
    display:flex;
    align-items: baseline;
    gap: 1vw;
}
.statistic-container .statistic-count{
    font-size: 2vw;
    font-weight: 600;
}
.statistic-container .statistic-rate{
    font-size:1vw;
}
.charts-container{
    margin-block:1.5vw;
    display: flex;
    gap: 1.5vw;
}
.charts-container .col2 ,
.charts-container .col1{
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 1.5vw;
}
.charts-container .charts-card{
     background: #fff;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.05);
    padding: 1.5vw;
    border-radius: 0.3vw;
}
.charts-container .recent-users,
.charts-container .recent-condo {
  height: 15.8vw;
  max-height: 15.8vw;
  overflow-y: auto;

  /* Hide scrollbar in IE and Edge */
  -ms-overflow-style: none;

  /* Hide scrollbar in Firefox */
  scrollbar-width: none;
}

/* Hide scrollbar in WebKit browsers (Chrome, Safari) */
.charts-container .recent-users::-webkit-scrollbar,
.charts-container .recent-condo::-webkit-scrollbar {
  display: none;
}

.charts-container .card-heading{
    font-size: 1.5vw;
    font-weight: 600;
}
.charts-container .left-site-pretty-btn{
    border-top-left-radius: 0.5vw !important;
    border-bottom-left-radius: 0.5vw !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-right: 0 !important;
    font-size: 0.8vw !important;
    padding: 0.5vw 1vw !important;
}
.charts-container .right-site-pretty-btn{
    border-top-left-radius: 0vw !important;
    border-bottom-left-radius: 0vw !important;
    border-top-right-radius: 0.5vw !important;
    border-bottom-right-radius: 0.5vw !important;
    font-size: 0.8vw !important;
    padding: 0.5vw 1vw !important;
}
.charts-container .btn-toggle{
    display: flex;
}
.charts-container .card-table table{
    margin-bottom: 0;
}
.charts-container .recent-user-avatar{
    height: 2.5vw;
    border-radius: 50%;
}
.charts-container .card-data{
    border: 0;
    background: transparent;
    padding: 0.5vw;
    vertical-align:baseline;
    font-size: 1vw;
    
    &:nth-child(1){
        width: 7%;
        padding-inline:  0;
    }
    &:nth-child(2){
        width: 25%;
         font-weight: 500;
        font-size: 1.2vw;
        padding-right:0;
    }
    &:nth-child(3){
        width: 19%;
        padding-right:0;
    }
    &:nth-child(4){
        width: 20%;
        padding-right:0;
    }
    &:nth-child(5){
        width: 18%;
        padding-right:0;
    }
    &:nth-child(6){
        padding-right: 0;
    }
}
.charts-container .condo-card-data{
    border: 0;
    background: transparent;
    padding: 0.5vw;
    vertical-align:baseline;
    font-size: 1vw;
    
    &:nth-child(1){
        width: 7%;
        padding-inline: 0;
    }
    &:nth-child(2){
        width: 25%;
         font-weight: 500;
        font-size: 1.2vw;
         padding-right:0;
    }
    &:nth-child(3){
        width: 15%;
         padding-right:0;
    }
    &:nth-child(4){
        width: 15%;
         padding-right:0;
    }
    &:nth-child(5){
        width: 17%;
         padding-right:0;
    }
    &:nth-child(6){
        width: 12%;
        padding-right: 0;
    }
     &:nth-child(7){
        padding-right: 0;
    }
}
.condo-chart {
    height: 25vw;
    max-height: 25vw;
    overflow: hidden;
}

.chart-wrapper {
  height: 20vw; /* fixed height ensures canvas is always visible */
  padding-top: 1vw;
  padding-bottom: 1vw;
  position: relative;
}

#condoRevenueChart,
#userRegistrationChart {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.dashbord-container .popup-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    max-height: 70%;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.dashbord-container .popup-content {
  background: white;
  padding: 2vw;
  border-radius: 8px;
  min-width: 300px;
  max-width: 90vw;
  display: flex;
    flex-direction: column;
    gap: 1vw
}

.dashbord-container .popup-close {
  float: right;
  font-size: 1.8vw;
  cursor: pointer;
}
.page-container #dashboard-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* optional: increase if needed */
    background: rgba(0, 0, 0, 0.5); /* slightly cleaner */
}

/* Position Top Right */
#custom-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 320px;
  width: calc(100% - 40px);
  display: flex;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Green Style */
.toast-style-3.success {
  background-color: #00c853;
  color: white;
}
.toast-style-3.fail {
  background-color: red;
  color: white;
}
.toast-style-3 .toast-icon {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.toast-style-3 .toast-progress {
  background-color: #009624;
}
.toast-style-3 .display-justify-between{
    width: 100%;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.toast-message {
  font-size: 0.9rem;
}

.toast-close {
  float: right;
  font-size: 1.8vw;
  cursor: pointer;
}

.toast-close:hover {
  opacity: 1;
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform-origin: left;
}

.toast-progress-animate {
  animation: progress 5s linear forwards;
}

@keyframes progress {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

/* Zoom animation */
@keyframes zoom {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOut {
  to {
    transform: scale(0.8);
    opacity: 0;
  }
}

.toast-animation-6-in {
  animation: zoom 0.4s ease-out forwards;
}

.toast-animation-6-out {
  animation: zoomOut 0.4s ease-in forwards;
}

@media (max-width: 700px) {
	#sidebar-overlay.active {
		display: block;
	}

	.admin-header-sidebar,
	.user-header-sidebar {
		width: 60%;
		position: fixed;
		left: 0;
		top: 0;
		height: 100dvh;
		z-index: 1000;
		/*transform: translateX(-100%);*/
		display: block;
		transition: display 0.3s ease; /* FIXED */
		padding: 4.5vw;
		background: #000; /* Optional: ensure background shows */
		overflow-y: hidden; /* Scrollable if needed */
	}
    .admin-header-sidebar,
	.user-header-sidebar{
	    display: none;
	}
	.admin-header-sidebar.collapsed,
	.user-header-sidebar.collapsed{
	    display: none !important;
	}


  
	/* Toggle Buttons */
	#sidebar-toggle {
		display: none;
	}
	.mobile-toggle-parent {
		display: flex;
		justify-content: end;
	}

	#mobile-sidebar-toggle {
		display: block;
		font-size: 6vw;
		margin-left: 2vw;
	}

	/* Menu Items */
	.menu li a,
	.logout-btn {
		font-size: 3.5vw;
		padding: 2vw;
		margin-bottom: 2vw;
		transition: 0.3s;
	}

	.menu li a::before,
	.logout-btn::before {
		font-size: 4vw;
		margin-right: 2.6vw;
	}

	.admin-header-sidebar .logout-btn,
	.user-header-sidebar .logout-btn {
		width: 100%;
	}

	.user-header-sidebar .sidebar-widget:nth-child(2) {
		height: 10vw;
	}
    .user-header-sidebar .sidebar-widget:nth-child(3) .user-profile{
		height: auto;
	}
	.admin-header-sidebar .admin-header-menu,
	.user-header-sidebar .user-header-menu {
		width: 100%;
	}

	.user-profile .user-avatar {
		width: 10vw;
		height: 10vw;
		margin-block: 5vw;
	}

	.user-profile .user-name {
		font-size: 3.5vw;
		margin-bottom: 5vw;
	}
}



@media (min-width: 768px) and (max-width: 1024px) {


	#sidebar-overlay.active {
		display: block;
	}

	.admin-header-sidebar,
	.user-header-sidebar {
		width: 60%;
		position: fixed;
		left: 0;
		top: 0;
		height: 100dvh;
		z-index: 1000;
		/*transform: translateX(-100%);*/
		display: block;
		transition: display 0.3s ease; /* FIXED */
		padding: 4.5vw;
		background: #000; /* Optional: ensure background shows */
		overflow-y: hidden; /* Scrollable if needed */
	}
    .admin-header-sidebar,
	.user-header-sidebar{
	    display: none;
	}
	.admin-header-sidebar.collapsed,
	.user-header-sidebar.collapsed{
	    display: none !important;
	}

	/* Toggle Buttons */
	#sidebar-toggle {
		display: none;
	}

	.mobile-toggle-parent {
		display: flex;
		justify-content: end;
	}

	#mobile-sidebar-toggle {
	     	display: block;
			font-size:4vw ;
			margin-left:  1vw;
	}

	/* Menu Items */
	.menu li a,
	.logout-btn {
		font-size: 2vw;
		padding: 1.5vw;
		margin-bottom: 1vw;
	}

	.menu li a::before,
	.logout-btn::before {
		font-size: 2.5vw;
		margin-right: 1vw;
	}

	.admin-header-sidebar .logout-btn,
	.user-header-sidebar .logout-btn {
		width: 100%;
	}

	.user-header-sidebar .sidebar-widget:nth-child(2) {
		height: 7vw;
		text-align: center;
	}
 .user-header-sidebar .sidebar-widget:nth-child(3) {
		height: 22vw;
	}
	.admin-header-sidebar .admin-header-menu,
	.user-header-sidebar .user-header-menu {
		width: 100%;
	}

	/* User Profile */
	.user-profile .user-avatar {
        width: 7vw;
        height: 7vw;
        margin-top: 5vw;
        margin-bottom: 1vw;
	}

	.user-profile .user-name {
		font-size: 2vw;
		margin-bottom: 1vw;
	}

	/* Form Styling */
	.line_box {
		display: none;
	}

	.condo_whitelist_form .form_main_heading {
		font-size: 3.5vw;
		margin-bottom: 1.5vw;
		padding: 1.5vw 0;
		line-height: 1.1;
		letter-spacing: 0.5px;
	}

	.condo_whitelist_form .form_sub_heading {
		font-size: 3vw;
		margin-bottom: 2vw;
	}

	.condo_whitelist_form .form-feilds {
		margin-bottom: 2vw;
		gap: 5px;
		font-size: 2vw;
		letter-spacing: 0.5px;
		line-height: 1.3;
	}

	.condo_whitelist_form label {
		margin-right: 5px;
		letter-spacing: 1px;
		line-height: 1.1;
	}

	.condo_whitelist_form .input-fields {
		border-radius: 4px;
		padding: 9px 10px;
	}

	.condo_whitelist_form .two-input-box {
		display: block;


		>*:nth-child(n) {
			width: 100%;
		}

	}

	.condo_whitelist_form .radio-btn {
		display: flex;
		gap: 5px;
		margin: 0;
	}

	.condo_whitelist_form .radio-btn>* {
		display: inline;
	}

	.condo-list,
	.condo_whitelist_form #amenities_list_dropdown {
		font-size: 2vw;
		list-style: none;
		padding-left: 0;
	}

	.condo-list>*,
	.condo_whitelist_form #amenities_list_dropdown>* {
		border-bottom: 1px solid #000;
		margin-bottom: 1vw;
		padding: 0.5vw 1vw 0.5vw 0;
	}


	.site-pretty-btn {
		padding: 1vw 1.5vw !important;
		font-size: 1.7vw !important;
		border-radius: 0.7vw !important;
		border: 1px solid black !important;
	}

	.main-page .left_top_dropdown {
		font-size: 1.7vw;
		padding: 0.6vw 1.2vw;
		width: 13vw;
		background-position: right 0vw center;
		background-size: 2.5vw;
	}

	.main-page .right_top_dropdown {
		width: 22vw;
		font-size: 1.7vw;
		padding: 0.7vw 1vw;
		background-position: right 0vw center;
		background-size: 2.5vw;
	}
	.main-page .font-semibold {
		font-size: 2vw;
		letter-spacing: 0.15vw;
		line-height: 1.4;
	}

	.main-page .main-heading {
		font-weight: bold;
		font-size: 5vw;
	}


	.main-page .font-light {
		font-size: 1.7vw;
	}

	.main-page .font-normal {
		font-size: 1.7vw
		
	}

	.main-page .font-bold {
		font-size: 2.5vw;
	}

	.table-body-draft .table-data,
	.table-body-user-managment .table-data,
	.table-body-user .table-data,
	.table-body-all .table-data {
		font-size: 2.5vw;
		letter-spacing: 0.01vw;
		padding: 1vw 0.7vw;
	}

	.table-header-user-managment tr th,
	.table-header-user tr th,
	.table-header-all tr th {
		font-size: 1.7vw;
		padding: 0.9vw 1vw;

	}

	.table-container .checkbox-column input[type="checkbox"] {
		width: 2vw;
		height: 2vw;

	}


	/* Optional: Add a custom checkmark */
	.table-container .checkbox-column input[type="checkbox"]:checked::before {
		left: 0.5vw;
		top: 0.2vw;
		width: 1vw;
		height: 1.2vw;
	}

	.current-user-pagination .pagination-btn,
	.all-user-pagination .pagination-btn,
	.user-managment-pagination .pagination-btn,
	.draft-condo-pagination .pagination-btn {
		padding: 1vw 1.2vw;
		border-radius: 0.8vw;
		font-size: 1.7vw;
	}

	.current-user-pagination #current-user-paginationList li,
	.all-user-pagination #all-user-paginationList li,
	.user-managment-pagination #userManagment-paginationList li,
	.draft-condo-pagination #draft-condo-paginationList li {
		padding: 1vw 1.2vw;
		border-radius: 0.8vw;
		font-size: 1.7vw;
	}


	.popup-box {
		width: 70vw;
		padding: 2vw;
		border-radius: 0.7vw;
	}

	.page-container .single-status-dropdown,
	.page-container .single-role-dropdown {
		top: 2vw;
		right: 2.5vw;
		font-size: 2.5vw;
		padding: 0.7vw 1.7vw;
		border-radius: 0.5vw;
		box-shadow: 0 0.6vw 1vw #00000038;
	}

	.page-container .single-status-dropdown ul,
	.page-container .single-role-dropdown ul {
		padding: 1.2vw 0;
		line-height: 2.5vw;
		margin-bottom: 0;

	}

	.page-container .single-status-dropdown ul li,
	.page-container .single-role-dropdown ul li {
		margin-bottom: 1.7vw;

	}

	/* Bell Icon */
	.bell-icon {
		font-size: 5vw;
	}

	.notification-count {
		font-size: 2vw;
		padding: 0 0.7vw;
		box-shadow: 0px 0.2vw 0.4vw rgba(0, 0, 0, 0.15);
	}

	/* Dropdown Notification Popup */
	.notification-popup {
		top: 5vw;
		right: 5vw;
		width: 45vw;
		border-radius: 1.5vw;
		padding: 2vw;
	}


	/* Popup Header */
	.popup-content h4 {
		font-size: 2.5vw;
		padding-bottom: 1vw;
	}


	/* Notifications List */
	.notification-popup ul {
		margin: 1vw 0;
		max-height: 35vw;
	}

	/* Individual Notification Item */
	.notification-popup li {
		padding: 0.5vw 1vw;
		border-bottom: 0.1vw solid #eee;
		display: flex;
		flex-direction: column;
		gap: 0.7vw;
		/* Reduced gap for better compactness */
		transition: background 0.3s ease;
		cursor: pointer;
	}


	.modal-content {
		width: 95vw;
		padding: 2vw 4vw;
	}

	.modal-content input {
		width: 100%;
		margin-bottom: 1vw;
		padding: 0.7vw 0.8vw;
		border: 0.1vw solid #ccc;
		border-radius: 0.6vw;
		font-size: 1.2vw;
	}


	.user-search-input {
		font-size: 1.7vw;
		padding: 0.8vw 1.3vw !important;
	}

	.user-suggestions {
		top: 4vw;
	}

	.user-suggestion-item {
		padding: 0.7vw;
		cursor: pointer;
		transition: background 0.2s ease-in-out;
	}

	.table-body-user-managment .user-avatar {
		width: 5vw;
		height: 5vw;
		border-radius: 50%;
	}

	.popup-box .new-user-form-field {
		margin-bottom: 1vw;
		font-size: 1.7vw;
	}

	.popup-box .user-form-input {
		padding: 0.8vw 1.2vw;
	}

	.popup-box .user-form-input:focus {
		outline: 0;
	}

	.table-content {
		margin-top: 1vw;
	}

	.profile-container .profile-wrapper {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.profile-container .profile-avatar {
		width: 15vw;
		height: 15vw;
		margin-bottom: 1vw;
	}

	.profile-container .username {
		font-size: 3vw;
		margin-bottom: 1vw;
	}

	.profile-container .right-panel {
		gap: 1.7vw;
	}

	.profile-container .detail-item {
		font-size: 2.5vw;
		padding-bottom: 0vw;

	}

	.modal-content input {
		margin-bottom: 1vw;
		padding: 0.7vw;
		border-radius: 1vw;
		font-size: 1.7vw;
	}

	.feedback-replies {
		margin: 2.3vw 0 0 5vw;
		border-left: 0.4vw solid #ddd;
		padding-left: 3.3vw;
	}


	.reply-form {
		margin-top: 10px;
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.reply-form textarea {
		width: 100%;
		padding: 8px;
		border: 1px solid #ccc;
		border-radius: 6px;
		font-size: 14px;
	}

	.reply-btn {
		background: #007bff;
		color: #fff;
		border: none;
		padding: 8px 12px;
		border-radius: 6px;
		cursor: pointer;
		font-size: 14px;
		align-self: flex-end;
	}

	.reply-btn:hover {
		background: #0056b3;
	}

	.responsiv-table {

		border-collapse: collapse;
		min-width: 180vw;
		/* Prevents columns from shrinking too much */
	}

	.page-header {
		margin: 3vw 2.5vw;
	}
	
	.main-page .sub-heading {
    font-size: 3.5vw;
    font-weight: 700;
    margin-block: 2.5vw;
}
.document-section .condo-list-header {
    font-size: 2.5vw;
}
.document-section .condo-list-body {
    font-size: 2.3vw;
}

.statistic-container .statistic-name-box {
    font-size: 1.8vw;
}

.statistic-container .statistic-icon {
    padding: 0.2vw;
    width: 4vw;
    height: 4vw;
}
.statistic-container .statistic-count {
    font-size: 2.8vw;
}

.statistic-container .statistic-rate {
    font-size: 1.8vw;
}

.charts-container .recent-users, .charts-container .recent-condo {
    height: 25vw;
    max-height: 25vw;
}
.charts-container .card-heading {
    font-size: 2vw;
}
.charts-container .recent-user-avatar {
    height: 3.2vw;
}
.charts-container .card-data {
    &:nth-child(2) {
        font-size: 1.8vw;
    }
}
.charts-container .card-data {
    font-size: 1.5vw;
}

.condo-chart {
    height: 35vw;
    max-height: 35vw;
}
.chart-wrapper {
    height: 28vw;
    padding-top: 1.5vw;
    padding-bottom: 1.5vw;

}
.charts-container .left-site-pretty-btn {
    border-top-left-radius: 01vw !important;
    border-bottom-left-radius: 1vw !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-right: 0 !important;
    font-size: 1.2vw !important;
    padding: 1vw 2vw !important;
}
.charts-container .right-site-pretty-btn {
    border-top-left-radius: 0vw !important;
    border-bottom-left-radius: 0vw !important;
    border-top-right-radius: 1vw !important;
    border-bottom-right-radius: 1vw !important;
    font-size: 1.2vw !important;
    padding: 1vw 2vw !important;
}
.charts-container .condo-card-data {
    font-size: 1.5vw;
}

.charts-container .condo-card-data {
    &:nth-child(2) {
        font-size: 1.5vw;

    }
}

.popup-content .display-justify-between {
    font-size: 1.5vw;
}
.document-details-container .details-card-header {
    gap: 1vw;
}
.document-details-container .details-card-header svg{
    width: 5vw;
    height: 5vw;
}
.document-details-container .details-card-detail i ,
.document-details-container .details-card-detail svg{
    width:4vw;
    height: 4vw;
}
.document-details-container .details-card-detail i {
    text-align: center;
    font-size: 3.3vw;
}
.document-details-container .details-card-header h3{
    font-size: 3vw;
}
.document-details-container .details-card-detail .pretty-anchor{
    font-size: 2.5vw;
}
.details-card p {
    margin: 1vw 0 !important;
    font-size: 2.5vw !important;
}
.details-card p strong {
    margin: 1vw 0;
    font-size: 2.5vw !important;
}

.payment-badge {
    padding: 0.5vw 1vw;
    border-radius: 1.5vw;
    font-size: 2vw;
}

.document-details-container .date-answer {
    padding: 0.5vw 1vw;
    font-size: 2.5vw;
    border-radius: 2vw;
}
.document-details-container .checklist-answer-yes {
    padding: 0.5vw 1vw;
    border-radius: 2vw;
    font-weight: 600;
    font-size: 2.5vw;
}
.document-details-container .checklist-answer-no {
    padding: 0.5vw 1vw;
    border-radius: 2vw;
    font-weight: 600;
    font-size: 2.5vw;
}
.document-details-container .checklist-answer-na{
    padding: 0.5vw 1vw;
    border-radius: 2vw;
    font-weight: 600;
    font-size: 2.5vw;
}
.condo-info-cards p ,
.condo-info-cards p strong {
    margin: 1vw 0 !important;
    font-size: 2.5vw !important;
}
.document-details-container .building-icon {
    margin-top: 1.5vw;
}
.document-details-container .amenities-icon {
    margin-top: 1.5vw
}

.document-details-container .amenity-badge {
    padding: 0.7vw 2vw;
    border-radius: 1vw;
    font-size: 2.5vw;
}
.document-details-container #amenities-display {
    gap: 2vw;
    margin-top: 2vw;
}
}

/* ====== Mobile Styles (450px and below) ====== */
@media (max-width: 450px) {
    #sidebar-toggle{
        display: none;
    }
    	.user-profile .user-avatar {
        width: 10vw;
        height: 10vw;
        margin-top: 10vw;
        margin-bottom: 1vw;
	}
	.user-header-sidebar .sidebar-widget:nth-child(2) {
		height: 7vw;
	}
	/* Form Styling */
	.line_box {
		display: none;
	}

	.page-container {
		min-height: 100dvh;
		padding: 1vw 4vw;
		margin: 0;
	}

	.condo_whitelist_form .form_main_heading {
		font-size: 5.3vw;
		margin-bottom: 2.2vw;
		padding: 2.2vw 0;
		line-height: 1.2;
		letter-spacing: 0.5px;
	}

	.condo_whitelist_form .form_sub_heading {
	    font-weight: bold;
		font-size: 4.5vw;
		margin-bottom: 3vw;
	}

	.condo_whitelist_form .form-feilds {
		margin-bottom: 3.3vw;
		gap: 8px;
		font-size: 3.2vw;
		letter-spacing: 0.5px;
		line-height: 1.8;
	}

	.condo_whitelist_form .input-fields {
		border-radius: 6px;
		padding: 9px 10px;
	}

	.condo_whitelist_form .two-input-box {
		display: block;


		>*:nth-child(n) {
			width: 100%;
		}

	}

	.condo_whitelist_form .radio-btn {
		display: flex;
		gap: 5px;
		margin: 3vw 0;
			>*:nth-child(n) {
		display: flex;
		align-items: center;
		gap: 0.6vw;
		
	}
	}

	.condo_whitelist_form .radio-btn>* {
		display: inline;
	}

	.condo-list,
	.condo_whitelist_form #amenities_list_dropdown {
		font-size: 14px;
		list-style: none;
		padding-left: 0;
	}

	.condo-list>*,
	.condo_whitelist_form #amenities_list_dropdown>* {
		border-bottom: 1px solid #000;
		margin-bottom: 10px;
		padding: 5px 10px 5px 0;
	}

	.condo_whitelist_form label {
		margin-right: 5px;
		letter-spacing: 0.1vw;
		line-height: 1.2;
		margin-bottom: 0;
	}

	.site-pretty-btn {
		padding: 1.8vw 2.2vw !important;
		font-size: 3vw !important;
		border-radius: 1.3vw !important;
		border: 1px solid black !important;
	}

	.main-page .left_top_dropdown {
        font-size: 4vw;
        padding: 1vw 3vw;
        width: 30vw;
        background-position: right 0vw center;
        background-size: 5vw;
	}

	.main-page .right_top_dropdown {
        width: 30vw;
        font-size: 4vw;
        padding: 1vw 1.5vw;
        background-position: right 0vw center;
        background-size: 5vw;
	}

	.main-page .font-semibold {
		font-size: 3vw;
		letter-spacing: 0.1vw;
		line-height: 1.7;
	}

	.main-page .main-heading {
		font-weight: bold;
		font-size: 7vw;
	}

	.main-page .font-light {
		font-size: 2.5vw
	}

	.main-page .font-normal {
		font-size: 3vw
	}

	.main-page .font-bold {
		font-size: 4vw;
	}

	.table-body-draft .table-data .table-actions,
	.table-body-user-managment .table-data .table-actions,
	.table-body-user .table-data .table-actions,
	.table-body-all .table-data .table-actions {
		font-size: 5vw;
		letter-spacing: 0.03vw;
		padding: 1.5vw 1vw;
	}

	.table-header-user-managment tr th,
	.table-header-user tr th,
	.table-header-all tr th {
		font-size: 3vw;
		padding: 2vw 1.5vw;

	}

	.table-container .checkbox-column input[type="checkbox"] {
		width: 3vw;
		height: 3vw;
	}


	/* Optional: Add a custom checkmark */
	.table-container .checkbox-column input[type="checkbox"]:checked::before {
		left: 0.5vw;
		top: 0.2vw;
		width: 1vw;
		height: 1.2vw;
	}

	.current-user-pagination,
	.all-user-pagination,
	.user-managment-pagination,
	.draft-condo-pagination {
		gap: 1.5vw;
	
	}

	.current-user-pagination .pagination-btn,
	.all-user-pagination .pagination-btn,
	.user-managment-pagination .pagination-btn,
	.draft-condo-pagination .pagination-btn {
		padding: 1.8vw 2.2vw;
		font-size: 2.5vw;
		border-radius: 1.3vw;
		font-size: 3vw;
	}
 


.current-user-pagination .pagination-btn:focus,
.all-user-pagination .pagination-btn:focus,
.user-managment-pagination .pagination-btn:focus,
.draft-condo-pagination .pagination-btn:focus {
	background: #fff;
	color: #000;
}
 .current-user-pagination #current-user-paginationList,
.all-user-pagination #all-user-paginationList,
.user-managment-pagination #userManagment-paginationList,
.draft-condo-pagination #draft-condo-paginationList {
gap: 1.5vw;
}
	.current-user-pagination #current-user-paginationList li,
	.all-user-pagination #all-user-paginationList li,
	.user-managment-pagination #userManagment-paginationList li,
	.draft-condo-pagination #draft-condo-paginationList li {
        padding: 1.8vw 2.2vw;
        border-radius: 1.3vw;
        font-size: 3vw;
        height: 8vw;
        width: 8vw;
        text-align: center;
	}


	.popup-box {
	width: 70vw;
        padding: 2vw 5vw;
        border-radius: 2.5vw;
        scrollbar-width: auto;
	}

	.page-container .single-status-dropdown,
	.page-container .single-role-dropdown {
top: 3vw;
        right: 5vw;
        font-size: 4.5vw;
        padding: 2.5vw 4vw;
        border-radius: 2vw;
        box-shadow: 0 0.6vw 1vw #00000038;
	}

	.page-container .single-status-dropdown ul,
	.page-container .single-role-dropdown ul {
		padding: 2vw 0;
		line-height: 6vw;
		margin-bottom: 0;

	}

	.page-container .single-status-dropdown ul li,
	.page-container .single-role-dropdown ul li {
		margin-bottom: 2.5vw;

	}

	/* Bell Icon */
	.bell-icon {
		font-size: 8vw;
	}

	.notification-count {
		font-size: 3vw;
		padding: 0 1.5vw;
		box-shadow: 0px 0.2vw 0.4vw rgba(0, 0, 0, 0.15);
	}

	/* Dropdown Notification Popup */
	.notification-popup {
top: 8vw;
        right: 7vw;
        width: 55vw;
        border-radius: 2vw;
        padding: 3vw;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 1vw 2vw;
	}


	/* Popup Header */
	.popup-content h4 {
		font-size: 3.5vw;
		padding-bottom: 1vw;
	}


	/* Notifications List */
	.notification-popup ul {
		margin: 1vw 0;
		max-height: 35vw;
	}

	/* Individual Notification Item */
	.notification-popup li {
		padding: 0.5vw 1vw;
		border-bottom: 0.1vw solid #eee;
		display: flex;
		flex-direction: column;
		gap: 0.7vw;
		/* Reduced gap for better compactness */
		transition: background 0.3s ease;
		cursor: pointer;
	}


	.modal-content {
		width: 95vw;
		padding: 2vw 4vw;
	}

	.modal-content input {
		width: 100%;
		margin-bottom: 1vw;
		padding: 0.7vw 0.8vw;
		border: 0.1vw solid #ccc;
		border-radius: 0.6vw;
		font-size: 1.2vw;
	}


	.user-search-input {
		font-size: 4vw;
		padding: 1vw 2vw !important;
	}

	.user-suggestions {
		top: 8vw;
	}

	.user-suggestion-item {
		padding: 2vw;
		font-size:4vw;
		cursor: pointer;
		transition: background 0.2s ease-in-out;
	}

	.table-body-user-managment .user-avatar {
		width: 8vw;
		height: 8vw;
		border-radius: 50%;
	}

	.popup-box .new-user-form-field {
     	margin-bottom: 3vw;
        font-size: 4vw;
	}

.popup-box .user-form-label{
    margin-bottom: 1.5vw;
}
	.popup-box .user-form-input {
		padding: 1vw 2vw;
	}

	.popup-box .user-form-input:focus {
		outline: 0;
	}

	.table-content {
		margin-block: 3vw;
	}


	.profile-container .profile-wrapper {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.profile-container .profile-avatar {
		width: 25vw;
		height: 25vw;
		margin-bottom: 2vw;
	}

	.profile-container .username {
		font-size: 5vw;
		margin-bottom: 2vw;
	}

	.profile-container .right-panel {
		gap: 3vw;
	}

	.profile-container .detail-item {
		font-size: 4vw;
		padding-bottom: 2vw;

	}

	.modal-content input {

		margin-bottom: 2vw;
		padding: 1.5vw 1.5vw;

		border-radius: 1vw;
		font-size: 3vw;
	}

	.user-avatar {
		width: 10vw;
		height: 10vw;
	}

	.feedback-replies {
		margin: 2.3vw 0 0 5vw;
		border-left: 0.4vw solid #ddd;
		padding-left: 3.3vw;
	}


	.reply-form {
		margin-top: 10px;
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.reply-form textarea {
		width: 100%;
		padding: 8px;
		border: 1px solid #ccc;
		border-radius: 6px;
		font-size: 14px;
	}

	.reply-btn {
		background: #007bff;
		color: #fff;
		border: none;
		padding: 8px 12px;
		border-radius: 6px;
		cursor: pointer;
		font-size: 14px;
		align-self: flex-end;
	}

	.reply-btn:hover {
		background: #0056b3;
	}

	.responsiv-table {

		border-collapse: collapse;
		min-width: 215vw;
		/* Prevents columns from shrinking too much */
	}

	.page-header {
		margin: 5vw 0;
	}
	.mobile-toggle-parent{
	    margin: 2vw 0vw;
	}
	.condo_whitelist_form{
	        width: 100%;
    margin: 0;
    padding: 1vw 0;
	}
	.table-container{
	        width: 100%;
    margin: auto;
    border-radius: 0.7vw;
	}
		#mobile-sidebar-toggle {
		display: block;
		font-size: 5vw;
		margin-left: 4vw;
		padding-top: 0.7vw;
	}
	.popup-overlay {
    padding: 2vw; /* Optional: spacing */
    border-radius: 1vw;
}
.table-body-all  .checkbox-data ,
.table-body-user .checkbox-data ,
.table-body-draft  .checkbox-data ,
.table-body-user-managment .checkbox-data{
         vertical-align: baseline;
    padding-top: 3vw !important;
 }
 .dropdowns-flex{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.main-page .sub-heading{
    font-size: 4vw;
    margin-block: 2.5vw;
}
.display-place-start {
    gap: 2vw;
}
.feedback-container .feedback-author-avatar {
    height: 10vw;
}
.feedback-container .feedback-author-name {
    font-size: 3vw;
    margin-block: 0 !important;
}
.feedback-container .feedback-author-email {
    font-size: 2.7vw;
    margin-block: 0 !important;
}
.feedback-container .feedback-text {
    font-size: 3vw;
    margin: 2vw 0 2vw 12vw !important;
}
.feedback-container .feedbact-replies-form {
    font-size: 3vw;
    padding: 2vw 0vw 2vw 4vw;
}
.feedback-container .feedback-replies-btn {
    font-size: 3vw;
    padding: 2vw 4vw;
}
.document-section .condo-list{
    width: 80vw;
}
.document-section .condo-list-header {
    font-size: 3vw;
    margin-top: 2vw;
}
.document-section .condo-list-body {
    font-size: 2.7vw;
    margin-top: 3vw;
}
.statistic-container {
    gap: 2.5vw;
    flex-direction: column;
}
.statistic-container .display-justify-between {
    width: 100%;
    gap: 2.5vw;
}
.statistic-container .statistic-child {
    padding: 3vw;
    border-radius: 0.7vw;
}
.statistic-container .statistic-name-box {
    font-size: 2.5vw;
}
.statistic-container .statistic-icon {
    padding: 0.3vw;
    width: 5vw;
    height: 5vw;
}
.statistic-container .statistic-count-box {
    gap: 2vw;
}
.statistic-container .statistic-count {
    font-size: 5vw
}
.statistic-container .statistic-rate {
    font-size: 3vw;
}
.charts-container {
    margin-block: 2.5vw;
    gap: 2.5vw;
    flex-direction: column;
}
.charts-container .col2, .charts-container .col1 {
    flex-direction: column;
    width: 100%;
    gap: 2.5vw;
}
.charts-container .recent-users, .charts-container .recent-condo {
    height: 50vw;
    max-height: 50vw;
}
.charts-container .card-heading {
    font-size: 4vw;
}
.charts-container .card-data {
    padding: 1vw;
    font-size: 2.5vw
}
.charts-container .charts-card {
    padding: 3vw;
    border-radius: 0.6vw;
}
.charts-container .card-data {
    &:nth-child(2) {
        font-size: 3vw;
    }
}
.charts-container .recent-user-avatar {
    height: 5vw;
}
.chart-wrapper {
    height: 50vw;
    padding-top: 2vw;
    padding-bottom: 2vw;
}

.charts-container .left-site-pretty-btn {
    border-top-left-radius: 1vw !important;
    border-bottom-left-radius: 1vw !important;
    font-size: 1.8vw !important;
    padding: 1vw 2vw !important;
}
.charts-container .right-site-pretty-btn {
    border-top-right-radius: 1vw !important;
    border-bottom-right-radius: 1vw !important;
    font-size: 1.8vw !important;
    padding: 1vw 2vw !important;
}
.charts-container .condo-card-data {
    padding: 1vw;
    font-size: 2.5vw;
}

.charts-container .condo-card-data {
    &:nth-child(2) {
        width: 25%;
        font-weight: 500;
        font-size: 3vw;
    }
}
.condo-chart {
    height: 60vw;
    max-height: 60vw;
}
.dashbord-container{
    margin-inline: 0vw;
}
.dashbord-container .charts-container .card-head{
    font-size: 3vw;
}

.popup-content .display-justify-between {
    font-size: 3.5vw;
}
.popup-content .display-justify-between span {
    font-size: 3.5vw;
}
.document-details-container {
    padding: 0;
}
.document-details-container .details-card-header {
    gap: 1.5vw;
}
.document-details-container .details-card-detail .pretty-anchor {
    font-size: 2.5vw;
}

.condo-info-cards p strong ,
.condo-info-cards p,
.details-card p strong ,
.details-card p {
    margin: 1vw 0 !important;
    font-size: 2.5vw !important;
}

.document-details-container .amenity-badge {
    padding: 1vw 2vw;
    border-radius: 3vw;
    font-size: 2.5vw;
}
.document-details-container .amenities-icon{
        text-align: center;
    margin-top: 1.8vw;
}
.document-details-container .pdf-icon{
        font-size: 3vw;
        text-align: center;
        align-self: start;
        margin-top: 2vw;
}
.document-details-container #amenities-display {
    gap: 2vw;
    margin-top: 2vw;
}
.details-card-header svg{
    width: 6vw !important;
    height: 6vw !important;
}
.details-card-detail i ,
.details-card-detail svg{
    width:5vw ;
    height: 5vw;
}
.details-card-detail i{
    font-size: 3vw;
}
.document-details-container .calendar-icon {
    font-size: 3vw;
    text-align: center;
    margin-top: 2vw;
}
.document-details-container .building-icon {
    font-size: 2.5vw;
    margin-top: 2vw;
    text-align: center;
}
.document-details-container .dot-icon {
    align-self: start;
    margin-top: 2vw;
    text-align: center;
}
.document-details-container .date-answer {
    padding: 0.5vw 1.5vw;
    font-size: 2.5vw;
    border-radius: 3vw;
}
.document-details-container .checklist-answer-yes {
    padding: 0.5vw 1.5vw;
    border-radius: 3vw;
    font-size: 2.5vw;
}
.document-details-container .checklist-answer-no {
    padding: 0.5vw 1.5vw;
    border-radius: 3vw;
    font-size: 2.5vw;
}
.document-details-container .checklist-answer-na{
    padding: 0.5vw 1.5vw;
    border-radius: 2vw;
    font-weight: 600;
    font-size: 3vw;
}
.document-details-container .checklist-answer-no svg{
    margin-right: 0.5vw;
    height: 3.5vw;
}
.payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4vw 1.5vw;
    border-radius: 2vw;
    font-weight: 600;
    font-size: 2vw;
    color: inherit;
}
.payment-badge svg{
    height: 4vw;
}
}