@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* Full-width Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #081C28;
    color: #D4EB2C;
    padding: 15px 20px;
    width: 100%;
}
.brand-name {
    flex-grow: 1; /* This will allow the brand name to take up the center space */
    margin-left:150px;
    font-size: 24px; /* Adjust the font size as needed */
    color: #fff; /* White text color */
}
.brand-container {
    display: flex;
    align-items: center; /* Align logo and title vertically */
    flex-grow: 1; /* Allow brand to take up space in the center */
    justify-content: center; /* Center the brand image and title together */
}

.brand-logo {
    height: 40px; /* Adjust as needed */
    margin-right: 10px; /* Space between logo and title */
}
.other-elements {
    display: flex;
    align-items: center;
}
.left {
    display: flex;
    align-items: center;
}

.title-main {
    font-size: 24px;
    font-weight: 500;
    margin-left: 10px; /* Space between hamburger and title */
	text-decoration: uppercase;
}

.menu-toggle {
    cursor: pointer;
    font-size: 24px;
}


.notifications {
    position: relative;
}

.bell {
    font-size: 24px;
}

.badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: orange;
    color: white;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 12px;
}

/* Container for Sidebar and Content */
.container {
    display: flex;
    height: calc(100vh - 60px); /* Adjust height minus top bar */
    width: 100%;
    transition: width 0.3s ease;
}

/* Sidebar */
.sidebar {
    height: 100vh;
    background-color: #081C28;
    color:white;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transition: transform 0.3s ease;
}

.sidebar.hidden {
    display: none;
}

/* Main Content */
.main-content {
    flex-grow: 1;
    background-color: #f9f9f9;
    padding: 20px;
    overflow-y: auto;
    min-height:100vh;
}

.user-info {
    text-align: center;
    margin-bottom: 40px;
}

.user-info img {
    border-radius: 50%;
    margin-bottom: 10px;
}

.user-name {
    font-size: 16px;
    font-weight: 500;
}

.user-email {
    font-size: 14px;
    color: #888;
}



/* Full-width container when sidebar is hidden */
.container.full-width {
    width: 100%;
}

/* Login Page Start */
/* Login Container */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color:#081C28;
}

.login-box {
    background-color: white;
    padding: 40px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    width: 300px;
}

.login-box h2 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
}

/* Form Group */
.form-group {
    margin-bottom: 10px;
    text-align: left;
}

.form-group label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
}

.form-group input:focus {
    outline: none;
    border-color: #081C28;
}

/* Button */
.login-btn {
    width: 100%;
    padding: 10px;
    background-color: #081C28;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #D4EB2C;
}

/* Styling for Logout Icon */
.logout {
    display: flex;
    align-items: center;
}

.logout-icon i {
    color: #D4EB2C;  
    font-size: 24px; /* Adjust size as needed */
    cursor: pointer;
    transition: color 0.3s ease;
}

.logout-icon i:hover {
    color: #f1f1f1; /* Slightly lighter color on hover */
}

/* Subheading styling */
.title-main h2 {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
    padding-top: 4px;`
}

/* Breadcrumb Styling */
.breadcrumb {
    font-size: 13px;
    margin: 0px 0px 40px 0px;
    display: flex;
    align-items: center;
      
	background-color:#eee;
	padding: 15px;
}
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
    margin-right: 5px;  

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 5px;
    color: #666;
}

/* Styling for Brand Logo and Name */
.brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* Adds space below logo */
}

.brand-logo .logo-img {
    width: 50px; /* Adjust the width of your logo */
    height: auto; /* Automatically scales height */
    margin-right: 10px; /* Adds space between logo and brand name */
}


/* Login Page End */


