/* Auto-generated CSS bundle file - 2025-10-02T07:15:11.292Z */


/* --- Start of ../js/app-shells/app-shell/app-shell.css --- */
:host {
  display: block;
}
.min-h-screen {
  min-height: 100vh;
}
.bg-base-100 {
  background-color: #ffffff;
}
.navbar {
  display: flex;
  padding: 0.5rem 1rem;
  background-color: #570df8;
}
.text-primary-content {
  color: #ffffff;
}
.flex-1 {
  flex: 1 1 0%;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.font-bold {
  font-weight: 700;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.p-4 {
  padding: 1rem;
}
/* --- End of ../js/app-shells/app-shell/app-shell.css --- */


/* --- Start of ../js/pages/todo/todo.css --- */

.todo-container {
    max-width: 400px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.todo-header {  
    font-size: 2rem;
    font-weight: 600; 
    margin-bottom: 1.5rem;
    text-align: center;
    color: #333;
}

/* Input and add button */
.todo-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.todo-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.todo-add-btn {
    padding: 0.5rem 1rem;
    background: #1976d2;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.todo-add-btn:hover {
    background: #1565c0;
}

/* Todo list styles */
.todo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.todo-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.todo-item:last-child {
    border-bottom: none;
}

.todo-text {
    flex: 1;
    font-size: 1rem;
    color: #444;
    word-break: break-word;
}

.todo-completed {
    text-decoration: line-through;
    color: #aaa; 
}

/* Action buttons */
.todo-actions {
    display: flex;
    gap: 0.5rem;
}

.todo-complete-btn,
.todo-delete-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    transition: background 0.2s, color 0.2s;
}

.todo-complete-btn:hover {
    color: #388e3c;
    background: #e8f5e9;
}

.todo-delete-btn:hover {
    color: #d32f2f;
    background: #ffebee;
}


@media (max-width: 500px) {
    .todo-container {
        max-width: 95vw;
        padding: 1rem;
    }
    .todo-header {
        font-size: 1.5rem;
    }
}
/* --- End of ../js/pages/todo/todo.css --- */
