
.kanban-board {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.menu-heading {
    color: white;
}


.task {
    background-color: #e2e2e2;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
    cursor: grab;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.task:active {
    cursor: grabbing;
}

.task-form {
    margin-bottom: 20px;
}

.task-form input {
    width: 70%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.task-form button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.task-form button:hover {
    background-color: #555;
}

.chart {
    margin-top: 20px;
}

textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 10px;
}

button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}
/*library design*/
/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    background: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

h2 {
    color: #444;
}

/* Library Section */
#library {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Motivational Thoughts */
.motivational-thoughts {
    background: linear-gradient(135deg, #f4f68d, #ed6fda);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.motivational-thoughts h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}

.motivational-thoughts h3::before {
    content: "💡";
    font-size: 24px;
}

#thought {
    font-style: italic;
    font-size: 18px;
    margin: 10px 0;
}

#new-thought {
    background: #fff;
    color: #f075cb;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

#new-thought:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Notes Section */
.notes {
    background: linear-gradient(135deg, #e550ed, #67e9f8);
    color: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.notes h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notes h3::before {
    content: "📝";
    font-size: 24px;
}

#note {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    margin-top: 10px;
    font-size: 16px;
}

#save-note {
    background: #fff;
    color: #2575fc;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    transition: 0.3s;
}

#save-note:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Note List */
#note-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.note-box {
    background: #fff;
    color: #333;
    padding: 10px;
    border-radius: 5px;
    margin: 5px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.note-box:hover {
    transform: translateY(-2px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.note-icon {
    color: #2575fc;
    margin-right: 8px;
}

.delete-note {
    color: #ff5e62;
    cursor: pointer;
    transition: 0.3s;
}

.delete-note:hover {
    color: #e04848;
}
.delete-note {
    color: #ff5e62;
    cursor: pointer;
    margin-left: 10px;
    transition: 0.3s;
}

.delete-note:hover {
    color: #e04848;
    transform: scale(1.2);
}

/*dashboard design*/



.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.task {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    cursor: grab;
}
.task.completed {
    text-decoration: line-through;
}
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: none;
    width: 300px;
}
.popup input, .popup button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.popup select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.add-task-btn {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 10px;
}
.add-task-btn:hover {
    background: #218838;
}
/*tracker */
.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  .button-group button {
    margin: 5px;
    padding: 10px;
    font-size: 16px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  button:hover { background: #357abd; }
  .chart-container { margin: 30px 0; }
  /* Mood popup */
  .popup, .overlay {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    text-align: center;
  }
  .overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5;
  }
  /*for kanban board*/
 

.kanban-board {
    display: flex;
    gap: 20px;
    width: 80%;
}

.column {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 30%;
    min-height: 300px;
}

h3 {
    text-align: center;
    color: #333;
}

.task-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

#new-task {
    flex: 1;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#add-task {
    background-color: #c4d6e9;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
}

.tasks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 200px;
    padding: 10px;
    border-radius: 6px;
    background-color: #f3e6ef;
}

.task {
    background-color: #c7f8c1;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 2px 2px 5px rgba(228, 214, 214, 0.1);
    cursor: grab;
}
