   :root {
            --primary: #d26047;
            --secondary: #1e40af;
            --success: #10b981;
            --danger: #ef4444;
            --warning: #f59e0b;
            --dark: #1f2937;
            --light-bg: #f3f4f6;
	       --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --success-color: #10b981;
            --danger-color: #ef4444;
            --warning-color: #f59e0b;
            --dark-color: #1f2937;
            --light-bg: #f3f4f6;
	   
	   
	   
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--light-bg);
            overflow-x: hidden;
        }
.footer {
    background-color: #ffffff;
    height: auto;
    padding: 2px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
    border-top: solid 1px #d16047;
    z-index: 1;
	position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
}

/*.footer  {*/
/*    display: -webkit-box;*/
/*    display: -ms-flexbox;*/
/*    display: flex;*/
/*    -webkit-box-pack: justify;*/
/*    -ms-flex-pack: justify;*/
/*    justify-content: space-around;*/
/*    background-color: #f7f7f7;*/
/*    text-decoration: none;*/
/*    border-top: solid 1px #202d81;*/
/*}*/
.footercount {
   background-color: #003484;
    height: auto;
    padding: 4px;
    /*margin-bottom: 3%;*/
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    align-content: space-around;
}

.menu {
    text-align: left;
    color: #fff;
}

.menu ul {
    color: #fff;
    list-style: none;
    line-height: 2.4;
}

.menu ul li a {
    text-decoration: none;
    color: #fff;
}

.menu h5 {
    color: #fff;
    margin-left: 30px;
}

.footer_contact {
    text-align: left;
    color: #fff;
}

.footer_contact a {
    color: #fff;
}

.footer_contact ul li {
    list-style: none;
    margin: 12px 0px 12px 0px;
}

.footer_social a {
    color: #fff;
    font-size: 150%;
    margin-top: 15px;
    margin-right: 15px;
}



.footer-bottom {
    width: 100%;
    background-color: #000;
    padding: 20px;
    color: #fff;
    text-align: center;
}

.footer-bottom a {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}



  /* Login Page Styles */

.badge-img{width:240px;height:360px;position:relative;border:1px solid #ccc;margin: 0 auto;}


.logo{height: 90px;}


   /* Login Page Styles */
        .login-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .login-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            max-width: 600px;
            width: 100%;
        }

        .login-left {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 60px 40px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .login-left i {
            font-size: 80px;
            margin-bottom: 20px;
        }

        .login-right {
            padding: 60px 40px;
        }

        .login-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 10px;
        }

        .login-subtitle {
            color: #6b7280;
            margin-bottom: 30px;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
        }

        .btn-login {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border: none;
            padding: 12px;
            font-weight: 600;
            transition: transform 0.2s;
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }

        /* Password Toggle Button */
        .password-toggle {
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 0 12px;
        }

        .password-toggle:hover {
            color: var(--primary-color);
        }

/* Event Cards */
        .event-grid {
                display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    justify-content: center;
}
  

        .event-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            border: 1px solid #e5e7eb;
            transition: all 0.3s;
        }

        .event-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .event-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 12px;
        }

        .event-meta {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #6b7280;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .event-actions {
            display: flex;
            gap: 8px;
            margin-top: 15px;
        }

        /* Top Header */
        .top-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(135deg, #f9f9f9, #ffffff);
            color: #474746;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 10px;
            z-index: 1100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .company-logo {
            font-size: 32px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .user-avatar {
			width: 45px;
			height: 45px;
			border-radius: 50%;
			background: rgb(210 96 71);
			display: flex;
			align-items: center;
			justify-content: center;
			color: #ffffff;
			font-weight: 600;
        }

        /* Left Sidebar */
        .left-sidebar {
            position: fixed;
            left: 0;
            top: 100px;
            width: 280px;
            height: calc(100vh - 70px);
            background: white;
            box-shadow: 2px 0 10px rgba(0,0,0,0.05);
            overflow-y: auto;
            z-index: 1000;
            transition: transform 0.3s ease;
        }

        .left-sidebar .nav-pills-custom {
            display: flex;
            flex-direction: column;
        }

        .left-sidebar .nav-pills-custom .nav-link {
            padding: 12px 15px;
            border-radius: 8px;
            color: #6b7280;
            background: transparent;
            border: none;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.3s;
            cursor: pointer;
            display: flex;
            align-items: center;
            border-left: 3px solid transparent;
        }

        .left-sidebar .nav-pills-custom .nav-link:hover {
            background: var(--light-bg);
            color: var(--primary);
        }

     
        .left-sidebar .nav-pills-custom .nav-link.active {
            background: #eff6ff;
            color: var(--primary);
            font-weight: 600;
            border-left-color: var(--primary);
        }

        .left-sidebar .nav-pills-custom .nav-link i {
            font-size: 16px;
        }

        /* Main Content Area */
        .main-content {
            margin-left: 280px;
            margin-top: 90px;
			margin-bottom: 35px;
            padding: 30px;
            transition: margin-right 0.3s ease;
        }

        .main-content.with-right-panel {
            margin-right: 50%;
        }
.event-tab-head{display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 31px;
    gap: 13px;}
			
			.event-heading{font-size: 28px; font-weight: 700; color: var(--dark); margin: 0;}

        /* Mobile Responsive */
        @media (max-width: 992px) {
			
		 
			
			.event-tab-head{display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 31px;
    flex-direction: column;
    gap: 13px;}
			
			.event-heading{font-size: 18px; font-weight: 700; color: var(--dark); margin: 0;}
			.card-custom {
    background: white;
    border-radius: 15px;
    padding: 23px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20%!important;
}
			.logo{height: 60px;}
			.footer {
			background-color: #ffffff;
			height: auto;
			padding: 2px;
			display: flex;
			justify-content: space-around;
			align-items: center;
			flex-wrap: nowrap;
			flex-direction: column;
			border-top: solid 1px #d16047;
			z-index: 1;
			align-content: center;
			position: relative;
			}
            .left-sidebar {
                transform: translateX(-100%);
            }

            .left-sidebar.mobile-open {
                transform: translateX(0);
            }

            .main-content {
               margin-left: 0;
        padding: 10px;
        margin-top: 100px;
        margin-bottom: 0px;
            }

            .mobile-menu-toggle {
                display: block !important;
            }
        }

        /* Forms */
        .form-label {
            font-weight: 500;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .form-control, .form-select {
            border: 2px solid #e5e7eb;
            border-radius: 8px;
            padding: 10px 15px;
            transition: all 0.3s;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .section-subtitle {
            font-size: 18px;
            font-weight: 600;
            color: var(--dark);
            margin: 25px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light-bg);
        }

		/* Buttons */
        .btn-custom {
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 500;
            border: none;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
        }

        .btn-view { background: #eff6ff; color: var(--primary); }
        .btn-view:hover { background: var(--primary); color: white; }
        
        .btn-edit { background: #fff7ed; color: var(--warning); }
        .btn-edit:hover { background: var(--warning); color: white; }
        
        .btn-delete { background: #fee2e2; color: var(--danger); }
        .btn-delete:hover { background: var(--danger); color: white; }

		
        /* Buttons */
        .btn-custom {
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 500;
            border: none;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary), #8c3223));
            color: white;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
        }

        /* Cards */
        .card-custom {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 2%;
        }

        .tab-content-area {
            padding: 0;
        }

        .tab-pane {
            display: none;
        }

        .tab-pane.active {
            display: block;
        }

        /* Workshop List */
        .workshop-item {
            background: var(--light-bg);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Tables */
        .table-custom {
            background: white;
            border-radius: 10px;
            overflow: hidden;
        }

        .table-custom thead {
            background: var(--light-bg);
        }

        .table-custom th {
            font-weight: 600;
            color: var(--dark);
            padding: 15px;
            border: none;
        }

        .table-custom td {
            padding: 15px;
            vertical-align: middle;
        }

        .mobile-menu-toggle {
            display: none;
            background: rgba(255,255,255,0.2);
            border: none;
            color: #d16047;
            font-size: 24px;
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            z-index: 999;
            display: none;
        }

        .overlay.active {
            display: block;
        }