body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #2c3e50;
    padding: 12px 20px;
    color: white;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.search-box {
    display: flex;
}

.search-box input {
    padding: 5px;
    border-radius: 4px 0 0 4px;
    border: none;
}

.search-box button {
    padding: 5px 10px;
    border: none;
    background: #16a085;
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.nav-links a {
    margin: 0 10px;
    text-decoration: none;
    color: white;
}

.cart {
    font-size: 22px;
    margin-left: 10px;
    cursor: pointer;
}

/* CONTENT AREA */
.content {
    padding: 20px;
}

.add-btn {
    background: #27ae60;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 20px;
}

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

thead {
    background: #34495e;
    color: white;
}

thead th {
    padding: 12px;
    text-align: left;
}

tbody td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

tbody tr:hover {
    background: #f1f1f1;
}
