/* 🔥 Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #f5f5f5;
    height: 100vh;
    overflow-x: hidden;
}

/* 🔥 Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #222;
    color: white;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Sidebar Toggle Button */
.menu-btn {
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 1100;
}

/* Centered Logo */
.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

/* Profile Section */
.profile {
    display: flex;
    align-items: center;
    z-index: 1100;
}

/* Profile Button */
.profile-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* Profile Dropdown */
.profile-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    right: 10px;
    background: white;
    color: black;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 200px;
    z-index: 1100;
}

.profile-dropdown.show {
    display: block;
}

.profile-dropdown a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: black;
}

.profile-dropdown a:hover {
    background: #f0f0f0;
}

/* 🔥 Sidebar */
.sidebar {
    position: fixed;
    left: -250px;
    top: 0;
    width: 250px;
    height: 100%;
    background: #333;
    color: white;
    transition: left 0.3s ease;
    padding-top: 60px;
    z-index: 1200;
}

/* Show Sidebar */
.sidebar.active {
    left: 0;
}

/* Sidebar Profile Section */
.sidebar-profile {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-icon {
    font-size: 40px;
    color: white;
    margin-right: 10px;
}

.profile-name {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

/* Sidebar Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

/* Sidebar Menu */
.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    padding: 15px;
}

.sidebar ul li a {
    color: white;
    text-decoration: none;
    display: block;
}

/* Sidebar Overlay */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
}

/* Show overlay when sidebar is active */
.sidebar.active ~ .sidebar-overlay {
    display: block;
}

/* 🔥 Main Content */
.main-content {
    margin: 60px auto 20px; /* Add spacing from fixed header */
    padding: 20px 20px 20px;
    transition: margin-left 0.3s ease;
}

.main-contentbasicform {
  
}

/* If using another wrapper for the form, ensure it has spacing */


/* Onboarding Process Container */
.onboarding-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

/* Task List */
.onboarding-list {
    list-style: none;
    padding: 0;
}

.onboarding-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 10px 0;
}

/* Icons Default */
.onboarding-list li i {
    font-size: 20px;
    color: #ccc;
    margin-right: 10px;
}

/* Completed Tasks */
.onboarding-list .completed i {
    color: #77DD77;
}

/* Links */
.onboarding-list a {
    text-decoration: none;
    color: #007bff;
}

/* Note Section */
.note {
    margin-top: 15px;
    padding: 10px;
    background: #e3f2fd;
    border-radius: 5px;
    font-size: 14px;
}

.note span {
    font-weight: bold;
    color: #007bff;
}

/* Keep main-content in place when sidebar opens */
.sidebar.active ~ .main-content {
    margin-left: 250px;
}



.progress-container {
    width: 100%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: #28a745;
    transition: width 0.4s ease-in-out;
}

.progress-text {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}


.progress-fill {
    height: 100%;
    width: 50%;
    background: #27ae60;
    border-radius: 5px;
    text-align: center;
    color: white;
    font-size: 12px;
}

