body {
    overflow-y: hidden;
    padding-bottom: 0;
}
.ml-auto {
    margin-left: auto;
}
.bg-pink {
    background-color: rgba(255, 105, 105, 1);
}
.bg-blue {
    background-color: rgba(0, 177, 246, 1);
}
.card {
    height: 100dvh;
    border-radius: 28px 28px 0 0;
    padding: 35px 1rem 0 1rem;
    margin-top: 15dvh;
}
.card .header {
    display: flex;
    padding: 0;
    margin-bottom: 18px;
}
.card .header h6 {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 0;
}
.card .body {
    display: flex;
    flex-direction: column;
    padding: 0 0 0.8rem 0.5rem;
}
.card .body .action-container {
    display: flex;
    flex-direction: column;
    row-gap: 14px;
    margin-bottom: 35px;
}
.card .body .action-container .action-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 100%;
    height: 58px;
    box-shadow: 0px 4px 10px 0px rgba(195, 195, 195, 0.25);
    padding: 0 1rem;
    column-gap: 12px;
}
.card .body .action-container .action-item:active {
    background-color: rgba(195, 195, 195, 0.25);
}
.card .body .action-container .action-item .image-container {
    height: 30px;
    width: 30px;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card .body .action-container .action-item .label-text {
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
    color: #333;
}
.card .body .information-container {
    display: flex;
    flex-direction: column;
    row-gap: 17px;
}
.card .body .information-container h6 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
}
.card .body .information-container .item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card .body .information-container .item .item-title {
    font-weight: 590;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
}
.card .body .information-container .item .item-subtitle {
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    text-align: right;
    color: rgba(153, 153, 153, 1);
}
.card .body .btn-danger {
    margin-top: 28px;
    height: 38px;
    width: 100%;
    border: none;
    background-color: rgba(255, 0, 0, 0.25);
    color: #ff0000;
    font-weight: 400;
    font-size: 17px;
    line-height: 22px;
    letter-spacing: -0.43px;
}
.card .body .btn-danger:active {
    background-color: rgba(255, 0, 0, 0.5);
}
