body{
    background-color: #1e1e2f;
}


button.add{
    background-color:#3b82f6;
    border-radius:40px;
    font-size: 50px;
    width: 100px;
    height: 100px;
    cursor: pointer;
    user-select: none;
}

button.delete{
    background-color:#ef4444;
    border-radius:10px;
    width:110px;
    height:50px;
    cursor: pointer;
    user-select: none;
}

button.delete.active {
    background: rgb(180, 60, 47);
    color: #fff;
}

button{
    outline: none !important;
    box-shadow: none !important;
    border: 2px solid #000000 !important;
}


input, textarea {
    background: #23263a;
    color: #f9fafb;
    border-radius: 6px;
    border: 1px solid #444;
    outline: none;
}