/* ---------- Registry List Screen ---------- */

.dwr-reg-list-screen {
    font-family: "Avenir-book", Poppins, sans-serif;
    max-width: 860px;
}

.dwr-reg-list-screen__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid #adc3c7;
}

.dwr-reg-list-screen__title {
    font-size: 28px;
    font-weight: 400;
    color: #222722;
    margin: 0;
    font-family: "Avenir-book", Poppins, sans-serif;
    letter-spacing: 0.02em;
}

.dwr-reg-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    border: 1px solid #e8e8e8;
    border-bottom: none;
    background: #fff;
    flex-wrap: wrap;
}

.dwr-reg-list-item:last-of-type {
    border-bottom: 1px solid #e8e8e8;
}

.dwr-reg-list-item__main {
    flex: 1;
    min-width: 200px;
}

.dwr-reg-list-item__name {
    font-size: 18px;
    font-weight: 700;
    color: #222722;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    font-family: "Avenir-book", Poppins, sans-serif;
}

.dwr-reg-list-item__meta {
    font-size: 12px;
    color: #adc3c7;
    font-family: "Avenir-book", Poppins, sans-serif;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.dwr-reg-list-item__dot {
    color: #ccc;
}

.dwr-reg-list-item__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.dwr-reg-list-item__delete {
    background: none;
    border: none;
    padding: 0;
    font-size: 12px;
    color: #888;
    cursor: pointer;
    font-family: "Avenir-book", Poppins, sans-serif;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s;
}

.dwr-reg-list-item__delete:hover {
    color: #bb251a;
}

.dwr-reg-list-item__delete:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dwr-reg-back {
    margin-bottom: 20px;
}

.dwr-reg-back__link {
    font-size: 13px;
    color: #adc3c7;
    text-decoration: none;
    font-family: "Avenir-book", Poppins, sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.15s;
}

.dwr-reg-back__link:hover {
    color: #222722;
    text-decoration: none;
}

@media (max-width: 600px) {
    .dwr-reg-list-screen__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .dwr-reg-list-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .dwr-reg-list-item__actions {
        align-items: flex-start;
        width: 100%;
    }

    .dwr-reg-list-item__actions .dwr-btn {
        width: 100%;
        text-align: center;
    }
}

