.forminator-submissions-wrapper {
	max-width: 1200px;
	margin: 30px auto;
	padding: 25px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Form Selector Styling */
.form-selector {
	margin: 20px 0;
	padding: 15px;
	background: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 1px 1px rgba(0, 0, 0, .04);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.selector-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.form-selector select {
	max-width: 140px;
	padding: 10px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	color: #444;
	background-color: #fff;
}

.form-selector button {
	padding: 10px 20px;
	background-color: #2271b1;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
}

.form-selector button:hover {
	background-color: #135e96;
}

.form-selector button:disabled {
	background-color: #ccc;
	cursor: not-allowed;
}

/* Table Styling */
.wp-list-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	margin-top: 20px;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
}

.wp-list-table th,
.wp-list-table td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #e5e7eb;
	font-size: 14px;
}

.wp-list-table td {
	vertical-align: middle;
}

.wp-list-table th {
	background: #f8f9fa;
	font-weight: 600;
	color: #374151;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.5px;
}

.wp-list-table th:nth-child(1) {
	width: 50px;
}

/* SR */
.wp-list-table th:nth-child(2) {
	width: 100px;
}

/* Application ID */
.wp-list-table th:nth-child(3) {
	width: 200px;
}

/* Name/Email */
.wp-list-table th:nth-child(4) {
	width: 100px;
}

/* Citizenship */
.wp-list-table th:nth-child(5) {
	width: 120px;
}

/* Order Date */
.wp-list-table th:nth-child(6) {
	width: 120px;
}

/* Passport */
.wp-list-table th:nth-child(7) {
	width: 100px;
}

/* Status */
.wp-list-table th:nth-child(8) {
	width: 120px;
}

/* Employee */
.wp-list-table th:nth-child(9) {
	width: 50px;
}

/* Details */

.wp-list-table tr:hover {
	background-color: #f9fafb;
}

/* Details Row Styling */
.details-row {
	display: none;
	background-color: #f8f9fa;
}

.details-row>td {
	padding: 20px;
}

/* Form Elements in Details */
.details-row input[type="text"],
.details-row select,
.details-row textarea {
	width: 100%;
	padding: 10px;
	margin: 5px 0;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
}

.details-row textarea {
	min-height: 100px;
	resize: vertical;
}

/* Notes Section */
.notes-section {
	margin-top: 20px;
	padding: 15px;
	background: #fff;
	border-radius: 4px;
	border: 1px solid #e5e7eb;
}

.note-item {
	padding: 15px;
	margin-bottom: 10px;
	background: #f8f9fa;
	border-radius: 4px;
	border-left: 3px solid #2271b1;
}

.note-content {
	margin-bottom: 8px;
	font-size: 14px;
}

.note-meta {
	font-size: 12px;
	color: #666;
}

.assign-employee-btn, .assign-to-me-btn{
	padding: 10px 10px !important;
	font-size: 10px !important;
	line-height: 18px !important;
	letter-spacing: 1px !important;
	text-transform: capitalize !important;
}

/* Arrow Link Styling */
.arrow-link {
	cursor: pointer;
	transition: transform 0.3s ease;
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #f0f0f0;
	border-radius: 50%;
}

.arrow-link:hover {
	background: #e0e0e0;
}

.arrow-link.rotated {
	transform: rotate(180deg);
}

/* Message Container */
.message-container {
	margin: 15px 0;
}

.notice {
	padding: 12px 15px;
	border-radius: 4px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.notice-success {
	background-color: #d1fae5;
	border: 1px solid #34d399;
	color: #065f46;
}

.notice-error {
	background-color: #fee2e2;
	border: 1px solid #ef4444;
	color: #991b1b;
}

/* Pagination Styling */
.top-pagination-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.tablenav {
	display: flex;
	justify-content: flex-end;
	padding: 8px 0;
}

.tablenav-pages {
	display: flex;
	align-items: center;
	gap: 10px;
}

.displaying-num {
	color: #666;
	margin-right: 15px;
}

.pagination-links {
	display: flex;
	align-items: center;
	gap: 5px;
}

.pagination-links a,
.pagination-links span {
	padding: 0 8px;
	min-width: 30px;
	height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #2271b1;
	border: 1px solid #2271b1;
	border-radius: 3px;
	background: #f6f7f7;
}

.pagination-links .current-page {
	background: #2271b1;
	color: #fff;
	border-color: #2271b1;
}

.pagination-links a:hover {
	background: #f0f0f1;
	border-color: #0a4b78;
	color: #0a4b78;
}

.pagination-links a.current:hover {
	background: #135e96;
	border-color: #135e96;
	color: #fff;
}

.pagination-links a.disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.pagination-dots {
	padding: 0 5px;
	color: #2271b1;
}

.prev-page,
.next-page {
	font-size: 16px;
}

/* Search filter style */
.search-box-container {
	margin-bottom: 20px;
	padding: 15px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.search-fields {
	display: flex;
	flex-direction: row;
	gap: 15px;
}

.text-search-group {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.text-search-group input {
	flex: 1;
	min-width: 200px;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.date-input-group {
	display: flex;
	gap: 10px;
	width: 100%;
}

.date-input-group input[type="date"] {
	flex: 1;
	min-width: 200px;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.filter-group {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.filter-group select {
	flex: 1;
	min-width: 200px;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

.button-group {
	display: flex;
	gap: 10px;
}

.button-group button {
	padding: 8px 15px;
}

#reset-search {
	background: #f7f7f7;
	border-color: #ccc;
}

/* Name and Email Cell Styling */
.name-email-cell {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.entry-name {
	font-weight: 500;
	color: #23282d;
}

.entry-email {
	font-size: 0.85em;
	color: #666;
}

.entry-status-done, .entry-status-done:hover{
	background-color: #98FB98 !important;
}

.quick-status{
	width: fit-content;
	max-width: 100px;
	padding: 3px;
}

/* Quick Assign To Styling */
.quick-assign-to {
	width: 100%;
	padding: 4px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background-color: #fff;
}

.quick-assign-to:disabled {
	opacity: 0.7;
	cursor: wait;
}

/* Prevent row click event when clicking dropdown */
.quick-assign-to {
	pointer-events: auto;
}

.entry-row td {
	position: relative;
}

/* Add this to your CSS file */
.payment-filter-wrapper {
	display: inline-block;
	/* margin: 0 15px; */
	vertical-align: middle;
}

.payment-filter-wrapper label {
	display: flex;
	align-items: center;
	font-weight: normal;
	cursor: pointer;
}

.payment-filter-wrapper input[type="checkbox"] {
	margin-right: 5px;
}

.selector-left {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.search-buttons {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: space-around;
}

button#search-submissions,
button#clear-search {
	padding: 10px 20px;
    background-color: #2271b1;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;	
}
.visa-part2-status{
	background: yellow;
	color: black;
	font-weight: bold;
}

label.highlighted-no {
	color: orange;
	font-weight: bold;
}
label.highlighted-yes {
	color: red;
	font-weight: bold;
}

.selfie-upload-img {
	max-width: 150px;
	height: 200px !important;
	border-radius: 10px;
	margin-bottom: 5px;
	display: block;
	object-fit: cover;
}

.esta-expiry-date-input {
	width: 170px !important;
}

.close-esta-date-tb {
	color: red;
}

.edit-esta-expiry-date-icon {
	color: #007bff;
}

.send-approved-mail-btn {
	background-color: #2271b1 !important;
}

.send-rejected-mail-btn {
	background-color: #2271b1 !important;
}