/* Reset & Base */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
    color: #333;
}

.app-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Tabs */
.tabs {
    display: flex;
    margin-bottom: 20px;
    gap: 10px;
}

.tabs button {
    flex: 1;
    padding: 10px;
    border: none;
    background: #e0e0e0;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}

.tabs button.active {
    background: #4CAF50;
    color: white;
}

/* Routines */
.routine-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.routine-card h2 {
    margin-top: 0;
    color: #4CAF50;
}

.routine-steps {
    list-style: none;
    padding: 0;
}

.routine-steps li {
    display: flex;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.routine-steps li:last-child {
    border-bottom: none;
}

.icon {
    font-size: 1.2em;
    margin-right: 10px;
}

.time {
    color: #666;
    margin-right: 10px;
    font-family: monospace;
}

.task {
    flex: 1;
}

/* Kanban */
.kanban {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.column {
    flex: 1;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
}

.tasks {
    min-height: 200px;
    list-style: none;
    padding: 0;
}

.tasks li {
    background: white;
    padding: 8px;
    margin: 5px 0;
    border-radius: 3px;
    cursor: grab;
    display: flex;
    justify-content: space-between;
}

.delete-task {
    color: #ff4444;
    cursor: pointer;
    margin-left: 10px;
}

/* Boutons */
.btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;
}

.btn:hover {
    background: #45a049;
}