@font-face {
    font-family: 'Pyidaungsu';
    src: url('/fonts/Pyidaungsu.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Global Reset & Layout */
* {
    margin: 0;
    padding: 0;
    font-size: 16px;
    box-sizing: border-box;
}

body {
    font-family: 'Pyidaungsu', 'Noto Sans Myanmar', 'Myanmar Text', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

h1 {
    margin-top: 45px;
    background-color: green;
    color: white;
    text-align: center;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: blue;
    padding: 0px;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.header-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    background: none;
    border: none;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.header-btn:hover {
    color: yellow;
}

.header-btn img {
    width: auto;
    height: 20px;
}

.header-btn.notification .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 3px 5px;
    font-size: 12px;
}

/* Dark Mode */
.dark-mode {
    background-color: #222;
    color: white;
}

.dark-mode .header {
    background-color: #333;
}

.dark-mode .header-btn {
    color: white;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropbtn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

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

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Logout Button */
.logout-btn {
    background-color: #dc3545;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: white;
}

.logout-btn:hover {
    background-color: #c82333;
}