body {
    margin: 0;
    font-family: sans-serif;
    display: flex;
    height: 100vh;
    background: #f5f5f5;
}

/* SIDEBAR */
.sidebar {
    width: 220px;
    background: #111;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.sidebar h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.nav-btn {
    background: none;
    border: none;
    color: white;
    padding: 12px 0;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.7;
}

.nav-btn.active,
.nav-btn:hover {
    opacity: 1;
}

/* MAIN CONTENT */
.content {
    flex: 1;
    padding: 40px;
}

.template-grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.template-card {
    width: 200px;
    height: 150px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: transform 0.15s ease;
}

.template-card:hover {
    transform: translateY(-4px);
}

.uses-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #111;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
}
