* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, sans-serif; }
body { background-color: #f4f4f9; color: #333; }

/* Navbar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    background-color: #1a1a2e; color: white; padding: 15px 30px; position: relative;
}
.navbar .logo { font-size: 24px; font-weight: bold; display: flex; align-items: center; gap: 10px; }
.nav-links { list-style: none; display: flex; gap: 20px; transition: all 0.3s ease; }
.nav-links li a {
    color: white; text-decoration: none; font-size: 16px;
    display: flex; align-items: center; gap: 5px; padding: 8px 12px;
    border-radius: 5px; transition: background 0.3s;
}
.nav-links li a:hover { background-color: #e94560; }
.menu-toggle { display: none; background: none; border: none; color: white; font-size: 28px; cursor: pointer; }

/* Content Area */
.container { padding: 40px; max-width: 1000px; margin: 0 auto; min-height: 80vh; }

/* Forms */
.form-container { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); max-width: 500px; margin: 20px auto; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; color: #1a1a2e; }
.form-control { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; font-size: 16px; }
.btn { background-color: #e94560; color: white; padding: 10px 15px; border: none; border-radius: 5px; cursor: pointer; width: 100%; font-size: 16px; transition: background 0.3s; }
.btn:hover { background-color: #d03b53; }

/* Comments */
.comment-box { background: #fff; padding: 15px; border-radius: 8px; margin-bottom: 15px; border-left: 5px solid #e94560; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.comment-box h4 { margin-bottom: 5px; color: #1a1a2e; }
.comment-date { font-size: 12px; color: #888; margin-bottom: 10px; display: block; }

/* Tables */
table { width: 100%; border-collapse: collapse; background: white; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
th, td { padding: 12px; border: 1px solid #ddd; text-align: left; }
th { background-color: #1a1a2e; color: white; }

/* Mobile View (Hamburger Menu) */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        display: none; flex-direction: column; width: 100%; position: absolute;
        top: 60px; left: 0; background-color: #16213e; padding: 20px 0; gap: 10px; z-index: 1000;
    }
    .nav-links li { text-align: center; }
    .nav-links li a { justify-content: center; padding: 15px; }
    .nav-links.active { display: flex; }
}