/* .auth-bg {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/auth-bg.jpg');
    background-size: cover;
    background-position: center;
}

.auth-bg .card {
    border-radius: 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
} */


.login-container {
    display: flex;
    min-height: 100vh;

}

.image-section {
    flex: 1;
    background-image:url('../images/auth-bg.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: none;
}

.image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.image-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.image-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.form-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: #fff;
}

.login-form {
    width: 100%;
    max-width: 437px;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 0 auto;
    text-align: center;
}

.login-form .logo-dark{
    margin-bottom: 15px;
    text-align: center;
}

.logo {
    text-align: center;
    margin-bottom: 2rem;
}

.logo h2 {
    color: #333;
    font-size: 1.8rem;
}

.logo span {
    color: #007bff;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #007bff;
    outline: none;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: 0.5rem;
}

.forgot-password a {
    color: #007bff;
    text-decoration: none;
}

.login-button {
    width: 100%;
    padding: 0.8rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #0056b3;
}

.register-link {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
}

.register-link a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

@media (min-width: 768px) {
    .image-section {
        display: block;
    }
}

.sidenav-menu .logo{
    margin-top: 8px;
}

.sidenav-menu .logo-lg img{
    height: 38px;
}

label.required::after{
    content: '*';
    font-weight: 500;
    color: red;
}


.preview-container {
    width: 100%;
    height: 240px;
    border-radius: 8px;
    border: 2px dashed #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.preview-container:hover {
    border-color: #94a3b8;
}

.preview-container.active {
    border-color: #6366f1;
    background-color: #f0f4ff;
}

.preview-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

.preview-content {
    text-align: center;
    padding: 20px;
    z-index: 1;
}

.preview-icon {
    width: 48px;
    height: 48px;
    background-color: #e0e7ff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
}

.preview-icon svg {
    width: 24px;
    height: 24px;
    color: #6366f1;
}

.preview-text {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 8px;
}

.preview-hint {
    font-size: 12px;
    color: #94a3b8;
}

.upload-btn {
    width: 100%;
    padding: 12px;
    background-color: #6366f1;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.upload-btn:hover {
    background-color: #4f46e5;
    transform: translateY(-1px);
}

.upload-btn:active {
    transform: translateY(0);
}

.upload-btn svg {
    width: 18px;
    height: 18px;
}

.file-input,.image-input {
    display: none;
}

.preview-container {
    width: 100%;
    min-height: 200px;
    border-radius: 8px;
    border: 2px dashed #e2e8f0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    overflow-x: auto;
}

.preview-item {
    width: 100px;
    height: 100px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background-color: rgb(241, 245, 249);
    display: flex;
    align-items: center;
    justify-content: center;
}
    
.preview-item .remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-upload-wrapper input[type="file"]{
   display: none;
}

.preview-container-maps {
    margin-top: 20px;
}

#iframe-preview-maps {
    width: 100%;
    height: 400px;
    border: 1px solid #ccc;
    margin-top: 10px;
}


.dd {
	position: relative;
	display: block;
	margin: 0;
	padding: 0;

	max-width: 100%;
	list-style: none;
	font-size: 13px;
	line-height: 20px;
}
.dd-list {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
    width: 100%;
}

.dd-list .badge{
	font-size: 12px;
}

.dd-list .dd-list {
	padding-left: 30px;
}
.dd-collapsed .dd-list {
	display: none;
}
.dd-item, .dd-empty, .dd-placeholder {
	display: block;
	position: relative;
	margin: 0;
	padding: 0;
	min-height: 20px;
	font-size: 13px;
	line-height: 20px;
}
.dd-handle {
    display: block;
    height: 50px;
    margin: 5px 0;
    padding: 15px 10px 7px 40px;
    color: #1d2038;
    text-decoration: none;
    font-weight: bold;
    border-radius: 7px;
    border: 1px solid #2b2b2b47;
    box-sizing: border-box;
    background-color: #fff;
}

.dd-handle:hover {
	color: #2ea8e5;
	background: #fff;
}
.dd-item > button {
	display: block;
	position: relative;
	cursor: pointer;
	float: left;
	width: 25px;
	height: 20px;
	margin: 5px 0;
	padding: 0;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border: 0;
	background: transparent;
	font-size: 12px;
	line-height: 1;
	text-align: center;
	font-weight: bold;
}
/* .dd-item > button:before {
	content: '+';
	display: block;
	position: absolute;
	width: 100%;
	text-align: center;
	text-indent: 0;
}
.dd-item > button[data-action="collapse"]:before {
	content: '-';
} */
.dd-placeholder, .dd-empty {
	margin: 5px 0;
	padding: 0;
	min-height: 30px;
	background: #4caf503d;
	border: 1px dashed #4caf50;
    border-radius: 7px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
.dd-empty {
	border: 1px dashed #bbb;
	min-height: 100px;
	background-color: #e5e5e5;
	background-image: -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff),  -webkit-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
	background-image:    -moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff),  -moz-linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
	background-image:         linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff),  linear-gradient(45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
	background-size: 60px 60px;
	background-position: 0 0, 30px 30px;
}
.dd-dragel {
	position: absolute;
	pointer-events: none;
	z-index: 9999;
}
.dd-dragel > .dd-item .dd-handle {
	margin-top: 0;
}
.dd-dragel .dd-handle {
	-webkit-box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, .1);
	box-shadow: 2px 4px 6px 0 rgba(0, 0, 0, .1);
}

.dd3-content{
    position: relative;
}

.dd3-content:before {
    content: "\eb89";
    font-family: 'tabler-icons' !important;
    position: absolute;
    right: 27px;
    width: 100%;
    text-indent: 0;
    color: #1d2038;
    font-size: 20px;
    font-weight: normal;
    font-weight: 900; 
}

.dd .span-right {
    z-index: 9;
    position: absolute;
    right: 12px;
    top: 16px;
}


.dd-dragel .menu_actions{
	display: none;
}
  
.menu_actions a.edit-button, 
.menu_actions a.del-button {
    width: 40px;
	margin-left:7px;
	font-size:18px;
	cursor: pointer;
    color: #2d3435;
    border: 1px solid #bfbfbf;
    padding: 5px 9px;
    border-radius: 6px;
}

.dd3-handle:hover {
	cursor:move;
}

.dd3-handle:hover {
    border: 1px dashed #4CAF50;
    background: #ffffff;
    color: #4CAF50;
}

.slug-exists {
    border: 2px solid #ff0000;
    animation: pulse 0.5s;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}
.status {
    margin-top: 5px;
    font-size: 14px;
}
.available {
    color: green;
}
.taken {
    color: red;
    font-weight: bold;
}