body {
    font-family: Arial, sans-serif;
    background-image: url('https://image.banibatiti.com/images/2025/01/30/image.banibatiti-3.jpeg');
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}
.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
    margin-top: 20px;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.header h1 {
    margin: 0;
}
.header button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}
.header button:hover {
    background-color: #0056b3;
}
.task-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.task-list {
    list-style-type: none;
    padding: 0;
}
.task-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}
.task-item button {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}
.task-item button:hover {
    background-color: #c82333;
}
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
}
.scroll-to-top:hover {
    background-color: #0056b3;
}
#banibatiti-footer{
    color: #ffffff;
    background-color: black;
    height: auto;
    width: 100%;
    text-align: center;
    padding: 10px 10px;
    border-radius: 50px;
    
}


/* Basic styling for the backlink */
.backlink {
    text-align: center;
    padding: 10px;
    background-color: #f1f1f1;
    border-top: 1px solid #ccc;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000; /* Ensure it stays on top */
}
.backlink a {
    text-decoration: none;
    color: #333;
}