
body {
    /*background: url('{{ url_for('static', filename='css/bg3.png') }}') no-repeat center center fixed;*/
    background-image:url("./bg3.webp");
    background-size: cover;
    color: #000;
    font-family: 'Roboto', sans-serif;
}

.container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 5px;
}
.btn-custom {
    background-color: #007bff;
    color: white;
    border: none;
    width: auto;
}
.btn-custom:hover {
    background-color: #0056b3;
}
.card {
    background-color: #f8f9fa;
    border: none;
}
.badge-status {
    font-size: 0.8em;
}
.modal-content {
    background-color: #fff;
    color: #000;
}
#weather, #author {
    position: fixed;
    top: 10px;
    padding: 10px;
    background-color: transparent;
    border-radius: 5px;
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.1);
}
#weather {
    left: 20px;
}
#author {
    right: 20px;
}

#addTaskBtn {
    width: auto;
}
.custom-bg {
    background-color: #40bcc9; /* 修改为你想要的背景色，例如浅蓝色 */
    color: #fff; /* 可以根据需要调整文字颜色 */
}
.footer {
    position: fixed;
    left: 0;
    bottom: 10px;
    width: 100%;
    /*background-color: #333;*/
    color: whitesmoke;
    text-align: center;
  }