/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 12 2026 | 15:56:47 */
/*--------------------------------------------------------------
# Leads Component Table
--------------------------------------------------------------*/





/*--------------------------------------------------------------
# Lead Actions & Edit Modal
--------------------------------------------------------------*/
.leads-content .list-body .list-body-item .list-col.col-actions {
    position: absolute;
    left: 10px;
}
.btn-lead-actions {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #b0b5ca;
    transition: all 0.2s ease;
}
.btn-lead-actions:hover {
	background: #f1f5f9;
	color: #64748b;
}

/* Edit Modal */
.lead-edit-modal,
.lead-delete-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lead-edit-modal-overlay,
.lead-delete-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.5);
}

.lead-edit-modal-content {
	position: relative;
	background: #fff;
	border-radius: 12px;
	width: 100%;
	max-width: 450px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	direction: rtl;
}
.lead-edit-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}
.lead-edit-modal-header h3 {
    margin: 0;
    font-family: 'Mikhmoret DL 1.1 AAA';
    font-size: 24px;
    font-weight: 500;
    color: #1a1a2e;
}
.lead-edit-modal-close {
    width: 35px;
    height: 35px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 30px;
    color: #2E2F40;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}
.lead-edit-modal-close:hover {
	background: #E6EAF3;
}

.lead-edit-modal-body {
	padding: 20px;
}

.lead-edit-field {
	margin-bottom: 1.25rem;
}

.lead-edit-field:last-child {
	margin-bottom: 0;
}
.lead-edit-field label {
    display: block;
    margin: 0 0 5px !important;
    font-family: 'Noto Sans Hebrew';
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}
.lead-edit-field input, .lead-edit-field select {
    width: 100%;
    padding: 15px;
    font-size: 15px;
    border: 0;
    border-radius: 7px;
    background: #EEF0F7;
    color: #1a1a2e;
    transition: all 0.2s ease;
}
.lead-edit-field input:focus,
.lead-edit-field select:focus {
	outline: none;
	border-color: #14b8a6;
	box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.1);
	background: #fff;
}
.lead-edit-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #EEF0F7;
    border-radius: 0 0 12px 12px;
}
.lead-edit-modal-actions {
	display: flex;
	gap: 0.75rem;
}
.btn-cancel {
    padding: 10px 25px;
    font-family: 'Noto Sans Hebrew';
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    background: #fff;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-cancel:hover {
	background: #f1f5f9;
	border-color: #d1d5db;
}
.btn-save {
    width: 100%;
    padding: 10px 50px;
    background: #61D4CB;
    color: #000;
    border: none;
    border-radius: 3px;
    font-family: 'Noto Sans Hebrew';
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}
.btn-save:hover {
	background: #5AC4BC;
}

.btn-save:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.btn-delete-lead {
    padding: 10px 15px;
    font-family: 'Noto Sans Hebrew';
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 3px;
    background: #fee2e2;
    color: #dc2626;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-delete-lead:hover {
	background: #fecaca;
}

/* Delete Confirmation Modal */
.lead-delete-modal-content {
	position: relative;
	background: #fff;
	border-radius: 12px;
	width: 100%;
	max-width: 380px;
	padding: 2rem;
	text-align: center;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	direction: rtl;
}

.lead-delete-modal-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.lead-delete-modal-content h3 {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
	font-weight: 600;
	color: #1a1a2e;
}

.lead-delete-modal-content p {
	margin: 0 0 1.5rem;
	color: #6b7280;
	font-size: 0.95rem;
}

.lead-delete-modal-actions {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
}

.btn-confirm-delete {
	padding: 0.75rem 1.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	border: none;
	border-radius: 8px;
	background: #dc2626;
	color: #fff;
	cursor: pointer;
	transition: all 0.2s ease;
}

.btn-confirm-delete:hover {
	background: #b91c1c;
}

.btn-confirm-delete:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}