

.dataTables_wrapper .dataTables_length {
    padding-left: 20px !important;
    margin-bottom: 20px !important;
    margin-top: 20px !important;
}

.dataTables_wrapper .dataTables_filter {
    padding-right: 20px !important;
    margin-bottom: 20px !important;
    margin-top: 20px !important;
}

.dataTables_paginate {
    padding-right: 20px !important;
    margin-bottom: 20px !important;
    margin-top: 20px !important;
}

.dataTables_info {
    padding-left: 20px !important;
    margin-bottom: 20px !important;
    margin-top: 20px !important;
}

.hidden-text {
    display: none;
}

.btn-secondary-2 {
    background-color: #f7f8f9;
}

.btn-secondary-2:hover {
    background-color: #ececec;
}

.image-preview {
    display: none;
    width: 200px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.dt-search .dt-search-0 {
    display: none !important;
}



/* image uploader */
.image-upload-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.image-upload-box {
    position: relative;
    width: 150px;
    height: 150px;
    border: 2px dashed #ddd;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}
.image-upload-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    display: none; /* Hide the image by default */
}
.image-upload-box input[type="file"] {
    display: none;
}
.image-upload-box.primary::before {
    content: 'Primary';
    position: absolute;
    top: 0;
    left: 0;
    background: black;
    color: white;
    padding: 2px 5px;
    font-size: 12px;
    border-bottom-right-radius: 5px;
}
.placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: transparent !important;
    cursor: pointer;
}
.placeholder p {
    margin: 0;
    font-size: 14px;
    color: #576B80;
}
.remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    display: none; /* Hide the button by default */
}
.remove-btn i {
    font-size: 18px;
    color: #576B80;
}
.image-upload-box:hover .remove-btn {
    display: flex; /* Show the button on hover */
}
.is-invalid {
    border-color: red !important;
}
.is-invalid p {
    color: red !important;
}

/* image loader */

.img-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.img-show {
    width: 100%;
    height: 160px;
    margin-bottom: 15px;
    padding: 5px;
    background: #fff;
    text-align: center;
    border-radius: 5px;
    border: 1px dashed #A2A2A2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 5px;
    object-fit: contain;
    background-color: #f8f8f8;
}

input.form-control {
    margin-top: 10px;
}



/* error modal */

.modal-confirm {		
	color: #434e65;
	width: 525px;
}
.modal-confirm .modal-content {
	padding: 20px;
	font-size: 16px;
	border-radius: 5px;
	border: none;
}
.modal-confirm .modal-header {
	background: #e85e6c;
	border-bottom: none;   
	position: relative;
	text-align: center;
	margin: -20px -20px 0;
	border-radius: 5px 5px 0 0;
	padding: 35px;
}
.modal-confirm h4 {
	text-align: center;
	font-size: 36px;
	margin: 10px 0;
}
.modal-confirm .form-control, .modal-confirm .btn {
	min-height: 40px;
	border-radius: 3px; 
}
.modal-confirm .close {
	position: absolute;
	top: 15px;
	right: 15px;
	color: #fff;
	text-shadow: none;
	opacity: 0.5;
}
.modal-confirm .close:hover {
	opacity: 0.8;
}
.modal-confirm .icon-box {
	color: #fff;		
	width: 95px;
	height: 95px;
	display: inline-block;
	border-radius: 50%;
	z-index: 9;
	border: 5px solid #fff;
	padding: 15px;
	text-align: center;
}
.modal-confirm .icon-box i {
	font-size: 58px;
	margin: -2px 0 0 -2px;
}
.modal-confirm.modal-dialog {
	margin-top: 80px;
}
.modal-confirm .btn, .modal-confirm .btn:active {
	color: #fff;
	border-radius: 4px;
	background: #eeb711 !important;
	text-decoration: none;
	transition: all 0.4s;
	line-height: normal;
	border-radius: 30px;
	margin-top: 10px;
	padding: 6px 20px;
	min-width: 150px;
	border: none;
}
.modal-confirm .btn:hover, .modal-confirm .btn:focus {
	background: #eda645 !important;
	outline: none;
}
.trigger-btn {
	display: inline-block;
	margin: 100px auto;
}

/* error modal */
