.empty-todo-card {
    margin: 0 auto;
    width: 95%;
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.empty-todo-icon {
    background: rgba(59, 130, 246, 0.1);
    padding: 0.75rem;
    margin-bottom: 0.75rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
}

.empty-todo-title {
    color: black;
    font-size: 1.2rem;
    font-weight: bolder;
    margin-bottom: 0.5rem;
}

.empty-todo-desc {
    color: rgb(151, 151, 151);
    font-size: 0.8rem;
    font-weight: lighter;
    margin-bottom: 0.5rem;
}