
.matchings-list-page {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
    overflow-y: auto;
    background: #fff;
    font-weight: 500;
}

.matchings-list-page,
.matchings-list-page * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.matchings-list-page-title {
    font-size: 24px;
    font-weight: 500;
    color: #E9528E;
    text-align: center;
    margin-top: 40px;
}


.cml-matching-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
    justify-items: center;
}

.cml-matching-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.cml-matching-card.unconfirmed {
    background: rgba(233, 81, 142, 0.2);
}

button.cml-pin-button,
button.cml-pin-button-for-user {
    position: absolute;
    left: 5px;
    top: 5px;
    background-color: rgba(240, 240, 240, 0.8);
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

button.cml-pin-button img,
button.cml-pin-button-for-user img {
    width: 24px;
    height: auto;
}

.cml-matching-button-for-user {
    position: absolute;
    right: 5px;
    bottom: 5px;
    background-color: rgba(240, 240, 240, 0.8);
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cml-unconfirmed-matching-budge {
    position: absolute;
    right: 5px;
    bottom: 5px;
    background: #E9528E;
    color: white;
    font-size: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cml-matching-button-for-user img {
    width: 24px;
    height: auto;
}

.cml-matching-avatar {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    position: relative;
}

.cml-matching-avatar img {
    width:100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.cml-matching-info {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.cml-user-name {
    font-size: 18px;
    color: #535353;
    margin-top: 10px;
}

.cml-button {
    height: 40px;
    font-size: 16px;
    background: #fff;
    color: #7D40A0;
    border-radius: 24px;
    width: 100%;
    position: relative;
    text-align: center;
    border: solid 1px #7D40A0;
    padding: 5px;
    margin-top: 10px;
}

.cml-button::before {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 20px;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid #7D40A0;
    border-left: 1px solid #7D40A0;
    -webkit-transform: translatey(-50%) rotate(-135deg);
    transform: translatey(-50%) rotate(-135deg);
}

.cml-no-matching {
    text-align: center;
    font-size: 16px;
    color: #AAAAAC;
    margin: 40px 0;
}



/* ------------------------------------------------------------------------------------------------------- */
