body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f6fa;
}

.app {
    display: flex;
    height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 220px;
    background: #2f3640;
    color: white;
    padding: 20px;
}

.sidebar h2 {
    margin-top: 0;
}

.nav-btn {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: none;
    background: transparent;
    color: white;
    text-align: left;
    cursor: pointer;
    border-radius: 6px;
}

.nav-btn:hover {
    background: #414b57;
}

.nav-btn.active {
    background: #00a8ff;
}

/* Content */
.content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

h1 {
    margin-top: 0;
}

/* Card */
.card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

input, select {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.row {
    display: flex;
    gap: 10px;
}

button {
    padding: 8px 12px;
    border: none;
    border-radius: 6px;
    background: #00a8ff;
    color: white;
    cursor: pointer;
}

button:hover {
    background: #0097e6;
}

/* Filters */
.filters {
    margin-bottom: 10px;
}

.filters button {
    margin-right: 5px;
    margin-bottom: 5px;
    background: #dcdde1;
    color: black;
}

.filters button.active {
    background: #00a8ff;
    color: white;
}

/* Items */
.items {
    display: grid;
    gap: 10px;
}

.item {
    background: white;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.item-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.item-icon {
    flex: 0 0 auto; /* fixed width column */
    font-size: 48px; /* adjust icon size */
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-text {
    display: flex;
    flex-direction: column;
}

.item-actions button {
    background: #b63819;
    margin-left: 5px;
}

.item-actions button.edit {
    background: #f8c435;
    color: black;
}

iconify-icon {
    filter: grayscale(100%);
}