body {
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 0;
}
.card {
    margin-top: 20dvh;
    min-height: 100dvh;
    border-radius: 28px 28px 0 0;
    padding: 35px 1rem 0 1rem;
    display: flex;
    flex-direction: column;
}
.card .btn-notification {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 0, 0, 0.1);
    border-radius: 100px;
    height: 36px;
    width: 100%;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.08px;
    padding: 0 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    color: #ff0000;
    margin-bottom: 12px;
}
.card .btn-notification:active {
    background-color: rgba(255, 0, 0, 0.3);
}
.card .task-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 21px;
}
.card .task-container .header {
    padding: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.45px;
    margin-bottom: 17px;
}
.card .task-container .body {
    padding: 0;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}
.card .task-container .body .box {
    padding: 13px 17px;
    border-radius: 8px;
    box-shadow: 0px 4px 4px 0px rgba(157, 157, 157, 0.25);
    min-height: 96px;
    width: 100%;
}
.card .task-container .body .box .box-header {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0px;
    color: #ce1bff;
    margin-bottom: 8px;
}
.card .task-container .body .box .box-body {
    display: flex;
    justify-content: space-between;
}
.card .task-container .body .box .box-body .item-label {
    flex-basis: 50%;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: -0.23px;
    align-self: flex-end;
}
.card .task-container .body .box .box-body .item-content {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    text-align: right;
}
.card .task-container .body .box .box-body .item-content h1 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 34px;
    line-height: 41px;
    letter-spacing: 0.4px;
    color: #25a18e;
}
.card .task-container .body .box .box-body .item-content p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 11px;
    line-height: 13px;
    letter-spacing: 0.06px;
    color: #999999;
    margin-top: auto;
}
.card .service-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 21px;
}
.card .service-container .header {
    padding: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.45px;
    margin-bottom: 17px;
}
.card .service-container .body {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px 24px;
}
.card .service-container .body .service-item {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    text-decoration: none;
    max-height: 92px;
    max-width: 50px;
    /*flex: 0 0 calc((100% - 96px) / 5); /* 96px = 24px × 4 gap */
}
.card .service-container .body .service-item .service-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 49px;
    width: 49px;
    border-radius: 999px;
    background-color: #d3fff8;
}
.card .service-container .body .service-item .service-label {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0px;
    text-align: center;
    color: #333;
}
.card .information-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 21px;
}
.card .information-container .header {
    padding: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: -0.45px;
    margin-bottom: 17px;
}
.card .information-container .body {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 7px;
}
.card .information-container .body .information-item {
    display: flex;
    flex-direction: column;
    min-width: 114px;
    min-height: 128px;
    padding: 8px 12px;
    border-radius: 10px;
}
.card .information-container .body .information-item h6 {
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0px;
}
.card .information-container .body .information-item p {
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 8px;
    line-height: 100%;
    letter-spacing: 0.06px;
    color: #999999;
}
.card .information-container .body .information-item h1 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
    text-align: right;
    color: #ce1bff;
}
