.mine-reg-card {
    position: relative;
}
.mine-reg-card-hd {
    padding-right: 76px;
}
.mine-reg-card:not(:has(.mine-reg-card-actions)) .mine-reg-card-hd {
    padding-right: 0;
}
.mine-reg-st-accepted {
    color: #a5d6a7;
}
.mine-reg-st-rejected {
    color: #ef9a9a;
}
.mine-reg-st-focus {
    color: #80cbc4;
}
.mine-reg-st-warn {
    color: #ffcc80;
}
.mine-reg-card-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}
.mine-reg-review-btn {
    border: 1px solid rgba(129, 212, 250, 0.55);
    border-radius: 8px;
    padding: 4px 12px;
    background: rgba(33, 150, 243, 0.22);
    color: #81d4fa;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}
.mine-reg-review-btn:hover {
    background: rgba(33, 150, 243, 0.38);
}
.mine-reg-reject-reason {
    color: #ef9a9a;
    margin-top: 6px;
}
.mine-reg-review-overlay {
    position: fixed;
    inset: 0;
    z-index: 12000;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.mine-reg-review-dialog {
    width: 100%;
    max-width: 360px;
    background: linear-gradient(180deg, rgba(34, 45, 82, 0.98), rgba(28, 38, 72, 0.98));
    border: 1px solid rgba(190, 209, 255, 0.35);
    border-radius: 14px;
    padding: 18px 16px 14px;
    color: #f7fbff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.mine-reg-review-dialog h3 {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 800;
}
.mine-reg-review-dialog p {
    margin: 0 0 12px;
    font-size: 14px;
    opacity: 0.9;
}
.mine-reg-review-reason {
    width: 100%;
    min-height: 72px;
    margin: 0 0 12px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(190, 209, 255, 0.35);
    background: rgba(0, 0, 0, 0.2);
    color: #f7fbff;
    font-size: 14px;
    resize: vertical;
    display: none;
}
.mine-reg-review-reason.is-open {
    display: block;
}
.mine-reg-review-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.mine-reg-review-btns button[hidden] {
    display: none !important;
}
.mine-reg-review-btns button {
    flex: 1 1 auto;
    min-width: 72px;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid rgba(190, 209, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #f7fbff;
}
.mine-reg-review-btns .mine-reg-review-yes {
    background: rgba(46, 125, 50, 0.45);
    border-color: rgba(129, 199, 132, 0.5);
}
.mine-reg-review-btns .mine-reg-review-return {
    background: rgba(230, 81, 0, 0.35);
    border-color: rgba(255, 183, 77, 0.45);
}
.mine-reg-review-btns .mine-reg-review-remove {
    background: rgba(198, 40, 40, 0.35);
    border-color: rgba(239, 154, 154, 0.45);
}
