.rmt-wrap {
    max-width: 960px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
}
.rmt-wrap h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 24px;
}
.rmt-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}
.rmt-card h2 {
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    margin: 0 0 4px 0;
    padding: 0;
    border: none;
}
.rmt-card .rmt-subtitle {
    font-size: 13px;
    color: #64748B;
    margin: 0 0 20px 0;
}
.rmt-status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}
.rmt-status-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #475569;
}
.rmt-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.rmt-dot--active { background: #10B981; }
.rmt-dot--inactive { background: #CBD5E1; }
.rmt-detail {
    font-size: 13px;
    color: #64748B;
    margin: 4px 0;
}
.rmt-detail strong {
    color: #475569;
    font-weight: 500;
}
.rmt-guide-step {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    padding: 16px;
    margin-bottom: 12px;
}
.rmt-guide-step h4 {
    font-size: 13px;
    font-weight: 600;
    color: #1E293B;
    margin: 0 0 8px 0;
}
.rmt-guide-step p, .rmt-guide-step ul {
    font-size: 13px;
    color: #475569;
    margin: 0;
    line-height: 1.6;
}
.rmt-guide-step ul {
    padding-left: 18px;
    margin-top: 6px;
}
.rmt-guide-step code {
    background: #E2E8F0;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 12px;
    color: #1E293B;
}
.rmt-guide-step pre {
    background: #1E293B;
    color: #E2E8F0;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1.5;
    overflow-x: auto;
    margin: 8px 0 0 0;
}
.rmt-footer {
    font-size: 12px;
    color: #94A3B8;
    border-top: 1px solid #E2E8F0;
    padding-top: 16px;
    margin-top: 8px;
}
.rmt-footer a {
    color: #2D5A9E;
    text-decoration: none;
}
.rmt-footer a:hover {
    text-decoration: underline;
}
.rmt-wrap .form-table th {
    font-size: 13px;
    font-weight: 500;
    color: #1E293B;
    padding: 16px 10px 16px 0;
}
.rmt-wrap .form-table td {
    padding: 12px 10px;
}
.rmt-wrap .form-table td .description {
    font-size: 12px;
    color: #94A3B8;
}
.rmt-wrap .submit .button-primary {
    background: #2D5A9E;
    border-color: #2D5A9E;
    border-radius: 6px;
    padding: 4px 20px;
    font-size: 13px;
    font-weight: 500;
}
.rmt-wrap .submit .button-primary:hover {
    background: #1E4A8E;
    border-color: #1E4A8E;
}
.rmt-collapsible-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #2D5A9E;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.rmt-collapsible-toggle:hover {
    color: #1E4A8E;
}
.rmt-collapsible-toggle .rmt-arrow {
    transition: transform 0.2s;
    display: inline-block;
    font-size: 10px;
}
.rmt-collapsible-toggle[aria-expanded="true"] .rmt-arrow {
    transform: rotate(90deg);
}
.rmt-collapsible-content {
    display: none;
    margin-top: 16px;
}
.rmt-collapsible-content.is-open {
    display: block;
}
input[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
