* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    color: #333;
}

.wrapper {
    background: #ffffff;
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-title {
    background-color: #1976d2;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    font-size: 20px;
    letter-spacing: 1px;
}

.task-list {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.task-item {
    display: block;
    padding: 15px 20px;
    background-color: #f8f9fa;
    color: #495057;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    border-left: 4px solid #1976d2;
    transition: all 0.2s ease;
}

.task-item:hover {
    background-color: #e3f2fd;
    transform: translateX(5px);
    color: #1565c0;
}

.footer {
    text-align: center;
    padding: 15px;
    font-size: 13px;
    color: #6c757d;
    border-top: 1px solid #eeeeee;
}

.footer a {
    color: #1976d2;
    text-decoration: none;
}