body {
    padding: 0;
    margin: 0;
    height: 100vh;
    background-image: linear-gradient(to top left, #7655a6 0%, #6081ec 100%);
    font-family: sans-serif;
}
.container {
    width: 95%;
    margin: 20px auto;
}
h1 {
    text-align: center;
    color: white;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.4); 
    backdrop-filter: blur(2px); 
    z-index: 100;
}
.popup {
    background-color: white;
    width: 300px;
    padding: 20px;
    border-radius: 10px;
}
.popup input {
    width: 90%;
    border: 1px solid gray;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 10px;
}
.popup a {
    display: block;
    text-decoration: none;
    background-image: linear-gradient(to top left, #7655a6 0%, #6081ec 100%);
    padding: 10px;
    text-align: center;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}
.hide { display: none !important; }

main {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}
.taskboard-card, .teammember-card {
    background-color: #f4f4f9;
    min-width: 250px;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.counter {
    background-color: orange;
    min-width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    color: white;
    font-size: 14px;
}
.add {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}
.add input {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
}
.add a {
    background-color: orange;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}
.task {
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: grab;
}
.task:active { cursor: grabbing; }
.task .remove { cursor: pointer; float: right; }

/* Styles for assigned tasks */
.member-tasks-list {
    min-height: 100px;
}
.status-select {
    width: 100%;
    margin-top: 8px;
    padding: 4px;
    border-radius: 4px;
    border: 1px solid #ddd;
}