* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: arial, sans-serif;
}
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 30px;
	background: #23242b;
	color: #fff;
}
.u-name {
	font-size: 20px;
	padding-left: 17px;
}
.u-name b {
	color: #127b8e;
}
.header i {
	font-size: 30px;
	cursor: pointer;
	color: #fff;
}
/*.header i:hover {
	color: #127b8e;
}*/
.header .notification {
	position: relative;
	cursor: pointer;
}
.header .notification span{
	position: absolute;
	top: 5px;
	left: 5px;
	background: #C80000;
	padding: 1px;
	border-radius: 50%;
}
.header .notification:hover i{
	color: #127b8e;
}
.notification-badge {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #dc3545;
	color: #fff;
	border-radius: 10px;
	padding: 2px 6px;
	font-size: 10px;
	min-width: 16px;
	text-align: center;
	font-weight: bold;
}
.notification-bar {
	display: none;
	width: 90%;
	max-width: 300px;
	position: absolute;
	right: 0;
	background: #eee;
	padding: 5px;
	border: 1px solid #262931;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
.notification-bar ul li{
	list-style: none;
	margin-top: 10px;
}
.notification-bar ul li a{
	text-decoration: none;
	color: #000;
}

.notification-bar ul li:nth-child(even){
	background: #fff;
}
.open-notification {
	display: block;
}


.user-p {
	text-align: center;
	padding-left: 10px;
	padding-top: 25px;
}
.user-p img {
	width: 150px;
}
.user-p h4 {
	color: #ccc;
	padding: 5px 0;

}
.side-bar {
	width: 290px;
	background: #262931;
	min-height: 100vh;
	transition: 500ms width;
}
.body {
	display: flex;
}


.side-bar ul {
	margin-top: 20px;
	list-style: none;
}
.side-bar ul li {
	font-size: 16px;
	padding: 15px 0px;
	padding-left: 20px;
	transition: 500ms background;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.side-bar ul li:hover {
	background: #127b8e;
}

/* Dropdown элементүүдэд hover эффект үгүй болгох */
.side-bar ul li.dropdown:hover {
	background: transparent;
}

.side-bar ul li a {
	text-decoration: none;
	color: #eee;
	cursor: pointer;
	letter-spacing: 1px;
}
.side-bar .active a {
	color: #127b8e !important;
}
.side-bar .active a i {
	color: #127b8e !important;
}
.side-bar ul .active:hover {
	background: transparent;
}
.side-bar ul li a i {
	display: inline-block;
	padding-right: 10px;
	font-size: 23px;
}
#navbtn {
	display: inline-block;
	margin-left: 70px;
	font-size: 20px;
	transition: 500ms color;
}
#checkbox {
	display: none;
}
#checkbox:checked ~ .body .side-bar {
	width: 60px;
}
#checkbox:checked ~ .body .side-bar .user-p{
	visibility: hidden;
}
#checkbox:checked ~ .body .side-bar a span{
	display: none;
}

.login-body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}
.login-body form {
	max-width:420px;
	width: 90%;
}

.section-1 {
	padding: 30px;
}
.section-1 .title {
    margin-bottom: 10px;
}
.section-1 .title a{
	text-decoration: none;
	display: inline-block;
    padding-left: 10px;
	border: none;
	background: #00CF22;
	padding: 10px 15px;
	color: #fff;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	outline: none;
	transition: background 1s;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}

.section-1 .title-2 {
    margin-bottom: 10px;
}
.section-1 .title-2 .btn{
	text-decoration: none;
	display: inline-block;
    padding-left: 10px;
	border: none;
	background: #00CF22;
	padding: 10px 15px;
	color: #fff;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	outline: none;
	transition: background 1s;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
.section-1 .title-2 .btn:hover{
	opacity: .6;
}
.section-1 .title-2 a{
	display: inline-block;
	margin-left: 10px;
}


.section-1 {
	width: 100%;
	background: #ffe;
}
.section-1 .title a:hover{
	opacity: .6;
}

.main-table, .main-table tr, .main-table th, .main-table td {
  border: 1px solid #aaa;
  border-collapse: collapse;
  padding: 7px;
}
.main-table {
	width: 90%;
	margin-top: 30px;
}


.delete-btn{
	text-decoration: none;
	display: inline-block;
    padding-left: 10px;
	border: none;
	background: #E00051;
	padding: 10px 15px;
	color: #fff;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	outline: none;
	transition: background 1s;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
.delete-btn:hover{
	opacity: .6;
}

.edit-btn{
	text-decoration: none;
	display: inline-block;
    padding-left: 10px;
	border: none;
	background: #006CE0;
	padding: 10px 15px;
	color: #fff;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	outline: none;
	transition: background 1s;
	box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}
.edit-btn:hover{
	opacity: .6;
}
.form-1 {
	width: 90%;
	max-width: 500px;
}
.input-holder lable {
	display: block;
	margin-bottom: 5px;
}
.input-1 {
	border: 2px solid #ccc;
	width: 100%;
	padding: 10px;
	font-size: 15px;
	outline: none;
	border-radius: 5px;
	display: block;
}

.input-1:focus{
	border-color: #555;
}
.danger {
	background: #FF98AA;
	color: #B20008;
	padding: 10px;
	margin-bottom: 10px;
}
.success {
	background: #80CE91;
	color: #009D22;
	padding: 10px;
	margin-bottom: 10px;
}
.dashboard {
	display: flex;
	max-width: 650px;
	width: 95%;
	justify-content: space-between;
	flex-wrap: wrap;
}
.dashboard-item {
    text-align: center;
    background: #262931;
    width: 200px;
    padding: 30px 5px;
    margin-bottom: 40px;
}
.dashboard-item i{
	display: block;
    color: #fff;
    font-size: 30px;
    margin-bottom: 5px;
}
.dashboard-item span{
	display: block;
    color: #fff;
}
tr.warning td {
    background-color: #fff3cd; /* Шар */
}

tr.urgent td, tr.overdue td {
    background-color: #f8d7da; /* Улаан */
}

/* Dropdown цэсний стиль */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    color: #eee;
    cursor: pointer;
    letter-spacing: 1px;
    padding-right: 15px;
}

.dropdown-toggle:hover {
    color: #eee;
}

.dropdown-toggle::after {
    content: '\f0d7'; /* FontAwesome caret-down */
    font-family: FontAwesome;
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 12px;
    color: #ccc;
}

.dropdown.open .dropdown-toggle::after {
    transform: rotate(180deg);
    color: #127b8e;
}

.dropdown-menu {
    display: none;
    background: #1a1b22;
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: 0 8px 8px 8px;
    box-shadow: 
        inset 3px 0 0 #127b8e,
        0 4px 8px rgba(0,0,0,0.2);
    animation: slideDown 0.3s ease;
    overflow: hidden;
    border: 1px solid #2a2b32;
    border-top: none;
    border-left: none;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        max-height: 0;
    }
    100% {
        opacity: 1;
        max-height: 200px;
    }
}

.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
    font-size: 14px;
    border-bottom: 1px solid #2a2b32;
}

.dropdown-menu li:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.dropdown-menu li a {
    padding: 12px 20px 12px 40px;
    color: #bbb;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu li:hover {
    background: #127b8e;
}

.dropdown-menu li:hover a {
    color: #fff;
    border-left-color: #fff;
    padding-left: 42px;
}

.dropdown-menu li a i {
    padding-right: 10px;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Dropdown parent hover effect */
.dropdown:hover .dropdown-toggle {
    background: rgba(18, 123, 142, 0.1);
}

.dropdown.open > a {
    background: #127b8e !important;
    color: #fff !important;
}

/* Dropdown menu улам тод харагдуулах */

/* Weekly report icon засвар */
.fa-calendar-week:before {
    content: "\f273";
}

/* Calendar day icon засвар */
.fa-calendar-day:before {
    content: "\f133";
}

.dropdown-menu li a {
    position: relative;
}

.dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: transparent;
    transition: background 0.3s ease;
}

.dropdown-menu li:hover a::before {
    background: #fff;
}
