body {
    font-family: Arial, sans-serif;
    margin: 0;
}

.title-bar {
    background: #333;
    color: white;
    padding: 10px;
    display: flex;
    align-items: center;
}

.menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    margin-right: 10px;
}

.menu {
    position: absolute;
    left: 0;
    top: 50px;
    background: #444;
    color: white;
    padding: 10px;
    display: none;
    z-index: 10;
}

.main-content {
    padding: 20px;
}

.task-card {
    border: 1px solid #ddd;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    position: relative;
}

.task-actions {
    position: absolute;
    top: 10px;
    right: 10px;
}