/**
 * Overtime Pay Calculator Styles
 * 근로수당 계산기 (연장/야간/휴일) 전용 스타일
 *
 * @package Zipper
 */

/* ===== 2컬럼 자체 그리드 레이아웃 ===== */
.opc-main-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 20px;
    align-items: start;
}

.opc-input-col {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.opc-result-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ===== 공통 섹션 ===== */
.opc-section {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(45, 42, 38, 0.06);
    transition: box-shadow 0.2s ease;
}

.opc-section:hover {
    box-shadow: 0 2px 8px rgba(45, 42, 38, 0.1);
}

.opc-section + .opc-section {
    margin-top: 14px;
}

.opc-section-title {
    font-size: 13px;
    font-weight: 600;
    color: #2d2a26;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.opc-section-title i {
    color: #d4af37;
    font-size: 14px;
}

/* ===== 탭 (3개이므로 flex OK) ===== */
.opc-tabs {
    display: flex;
    gap: 4px;
    background: #f5f3f0;
    border-radius: 8px;
    padding: 3px;
}

.opc-tab {
    flex: 1;
    padding: 10px 8px;
    font-size: 13px;
    font-weight: 600;
    color: #7a756d;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    white-space: nowrap;
}

.opc-tab:hover {
    color: #2d2a26;
    background: rgba(255,255,255,0.5);
}

.opc-tab.active {
    color: #fff;
    background: #d4af37;
    box-shadow: 0 2px 4px rgba(212,175,55,0.3);
}

.opc-tab-content {
    display: none;
}

.opc-tab-content.active {
    display: block;
}

/* ===== 입력 그룹 ===== */
.opc-input-group {
    margin-bottom: 12px;
    max-width: 100%;
    box-sizing: border-box;
}

.opc-input-group:last-child {
    margin-bottom: 0;
}

.opc-input-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #5f5a56;
    margin-bottom: 6px;
}

.opc-input-label .opc-label-hint {
    font-weight: 400;
    color: #9e9a96;
    margin-left: 4px;
}

.opc-amount-input {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 10px 12px;
    font-size: 15px;
    font-weight: 600;
    text-align: right;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    background: #faf9f7;
    color: #2d2a26;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.opc-amount-input:hover {
    border-color: #d4c67a;
}

.opc-amount-input:focus {
    outline: none;
    border-color: #d4af37;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.opc-amount-input::placeholder {
    font-weight: 400;
    color: #c4c0bc;
}

.opc-number-input {
    width: 80px;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    background: #faf9f7;
    color: #2d2a26;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.opc-number-input:hover {
    border-color: #d4c67a;
}

.opc-number-input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.opc-select {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: 10px 12px;
    font-size: 13px;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    background: #faf9f7;
    color: #2d2a26;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%235f5a56' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.opc-select:hover {
    border-color: #d4c67a;
}

.opc-select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.opc-korean-amount {
    font-size: 11px;
    color: #d4af37;
    margin-top: 4px;
    text-align: right;
    min-height: 16px;
}

.opc-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.opc-hint {
    font-size: 11px;
    color: #9e9a96;
    margin-top: 4px;
}

.opc-unit {
    font-size: 12px;
    color: #7a756d;
    margin-left: 4px;
}

/* ===== 시급 입력 + 최저임금 버튼 행 ===== */
.opc-wage-row {
    display: flex;
    gap: 6px;
    align-items: stretch;
}

.opc-wage-row .opc-amount-input {
    flex: 1;
    min-width: 0;
}

.opc-min-wage-btn {
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #d4af37;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.opc-min-wage-btn:hover {
    background: rgba(212,175,55,0.15);
    border-color: #d4af37;
}

/* ===== 토글 (월급/시급, 5인 미만) ===== */
.opc-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.opc-toggle-label {
    font-size: 12px;
    font-weight: 500;
    color: #5f5a56;
}

.opc-toggle-label .opc-toggle-desc {
    font-weight: 400;
    color: #9e9a96;
    display: block;
    font-size: 11px;
    margin-top: 2px;
}

.opc-toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.opc-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.opc-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #d4d0cc;
    border-radius: 12px;
    transition: background 0.2s;
}

.opc-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
}

.opc-toggle-switch input:checked + .opc-toggle-slider {
    background: #d4af37;
}

.opc-toggle-switch input:checked + .opc-toggle-slider::before {
    transform: translateX(20px);
}

/* ===== 5인 미만 안내 배너 ===== */
.opc-small-biz-notice {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #e67e22;
    background: rgba(230,126,34,0.06);
    border: 1px solid rgba(230,126,34,0.2);
    border-radius: 6px;
}

.opc-small-biz-notice i {
    flex-shrink: 0;
}

/* ===== 최저임금 경고 ===== */
.opc-wage-warning {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #e74c3c;
    background: rgba(231,76,60,0.06);
    border: 1px solid rgba(231,76,60,0.2);
    border-radius: 6px;
}

.opc-wage-warning i {
    flex-shrink: 0;
}

/* ===== 체크박스 그룹 ===== */
.opc-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.opc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #5f5a56;
    background: #faf9f7;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.opc-checkbox-label:hover {
    border-color: #d4c67a;
}

.opc-checkbox-label.active {
    color: #2d2a26;
    background: rgba(212,175,55,0.06);
    border-color: #d4af37;
}

.opc-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: #d4af37;
}

/* ===== 근무 시간 입력 인라인 ===== */
.opc-hours-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.opc-hours-group .opc-input-label {
    margin-bottom: 0;
    white-space: nowrap;
    min-width: 60px;
}

/* ===== 라디오 그룹 (월급/시급) ===== */
.opc-radio-group {
    display: flex;
    gap: 6px;
}

.opc-radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #5f5a56;
    background: #faf9f7;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    flex: 1;
    justify-content: center;
}

.opc-radio-label:hover {
    border-color: #d4c67a;
}

.opc-radio-label.active {
    color: #2d2a26;
    background: rgba(212,175,55,0.06);
    border-color: #d4af37;
}

.opc-radio-label input[type="radio"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: #d4af37;
}

/* ===== 버튼 ===== */
.opc-btn-group {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.opc-calculate-btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #d4af37, #c9a030);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(212, 175, 55, 0.25);
}

.opc-calculate-btn:hover {
    background: linear-gradient(135deg, #c9a030, #b8922a);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

.opc-reset-btn {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #5f5a56;
    background: #f5f3f0;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.opc-reset-btn:hover {
    background: #eae7e3;
}

/* ===== 결과 - 대기 영역 ===== */
.opc-waiting {
    text-align: center;
    padding: 40px 20px;
    color: #9e9a96;
}

.opc-waiting i {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
    color: #d4af37;
    opacity: 0.4;
}

.opc-waiting p {
    font-size: 13px;
    margin: 0;
}

/* ===== 결과 - 요약 카드 ===== */
.opc-result-summary {
    background: linear-gradient(135deg, #fdfbf5 0%, #faf6ec 100%);
    border: 2px solid #d4af37;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.12);
}

.opc-summary-title {
    font-size: 12px;
    color: #7a756d;
    margin-bottom: 8px;
}

.opc-summary-main {
    font-size: 36px;
    font-weight: 700;
    color: #d4af37;
    line-height: 1.2;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.opc-summary-main .opc-summary-unit {
    font-size: 18px;
    font-weight: 600;
}

.opc-summary-label {
    font-size: 13px;
    color: #5f5a56;
    margin-bottom: 16px;
}

.opc-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid #e8e4dc;
    font-size: 13px;
}

.opc-summary-row-label {
    color: #7a756d;
}

.opc-summary-row-value {
    font-weight: 600;
    color: #2d2a26;
}

/* ===== 수당 상세 테이블 ===== */
.opc-detail-table-section {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(45, 42, 38, 0.06);
}

.opc-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

.opc-detail-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.opc-detail-table th,
.opc-detail-table td {
    padding: 10px 8px;
    text-align: right;
    border-bottom: 1px solid #f0ede8;
    white-space: nowrap;
}

.opc-detail-table th {
    background: #faf9f7;
    font-weight: 600;
    color: #5f5a56;
    font-size: 12px;
}

.opc-detail-table th:first-child,
.opc-detail-table td:first-child {
    text-align: left;
}

.opc-detail-table td {
    color: #2d2a26;
}

.opc-detail-table tr.opc-total-row {
    background: rgba(212,175,55,0.06);
}

.opc-detail-table tr.opc-total-row td {
    font-weight: 700;
    color: #d4af37;
    border-top: 2px solid #d4af37;
}

.opc-detail-table tr.opc-no-premium td {
    color: #c4c0bc;
}

/* ===== 상세 카드 ===== */
.opc-detail-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.opc-detail-card {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: all 0.2s;
}

.opc-detail-card:hover {
    border-color: #d4af37;
    box-shadow: 0 2px 8px rgba(212,175,55,0.12);
}

.opc-detail-label {
    font-size: 13px;
    font-weight: 600;
    color: #5f5a56;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.opc-detail-label i {
    color: #d4af37;
}

.opc-detail-value {
    font-size: 24px;
    font-weight: 700;
    color: #2d2a26;
}

.opc-detail-value .opc-detail-unit {
    font-size: 14px;
    font-weight: 500;
    color: #7a756d;
}

/* ===== 5인 미만 비교 섹션 ===== */
.opc-compare-box {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(45, 42, 38, 0.06);
}

.opc-compare-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
}

.opc-compare-row + .opc-compare-row {
    border-top: 1px solid #f0ede8;
}

.opc-compare-row-label {
    color: #7a756d;
}

.opc-compare-row-value {
    font-weight: 600;
    color: #2d2a26;
}

.opc-compare-row-value.opc-diff-positive {
    color: #e74c3c;
}

.opc-compare-row-value.opc-diff-negative {
    color: #27ae60;
}

/* ===== 차트 ===== */
.opc-chart-section {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(45, 42, 38, 0.06);
}

.opc-donut-wrap {
    position: relative;
    width: 100%;
    max-width: 220px;
    height: 220px;
    margin: 0 auto;
}

.opc-chart-legend {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
    font-size: 12px;
    color: #5a5650;
}

.opc-legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.opc-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

/* ===== 급여 명세서 ===== */
.opc-payslip-section {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(45, 42, 38, 0.06);
}

.opc-payslip-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.opc-payslip-table th,
.opc-payslip-table td {
    padding: 10px 8px;
    text-align: right;
    border-bottom: 1px solid #f0ede8;
}

.opc-payslip-table th {
    background: #faf9f7;
    font-weight: 600;
    color: #5f5a56;
    font-size: 12px;
}

.opc-payslip-table th:first-child,
.opc-payslip-table td:first-child {
    text-align: left;
}

.opc-payslip-table td {
    color: #2d2a26;
}

.opc-payslip-table tr.opc-payslip-total td {
    font-weight: 700;
    color: #d4af37;
    border-top: 2px solid #d4af37;
    background: rgba(212,175,55,0.04);
}

/* ===== 포괄임금 검증 결과 ===== */
.opc-verdict-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
}

.opc-verdict-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.opc-verdict-box.opc-verdict-ok {
    background: linear-gradient(135deg, rgba(46,204,113,0.08), rgba(46,204,113,0.02));
    border: 2px solid rgba(46,204,113,0.4);
    color: #27ae60;
}

.opc-verdict-box.opc-verdict-violation {
    background: linear-gradient(135deg, rgba(231,76,60,0.08), rgba(231,76,60,0.02));
    border: 2px solid rgba(231,76,60,0.4);
    color: #e74c3c;
}

.opc-verdict-detail {
    font-size: 13px;
    font-weight: 400;
    margin-top: 4px;
    opacity: 0.9;
}

.opc-unpaid-box {
    background: #fff;
    border: 1px solid #e8e4dc;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(45, 42, 38, 0.06);
}

.opc-unpaid-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
}

.opc-unpaid-row + .opc-unpaid-row {
    border-top: 1px solid #f0ede8;
}

.opc-unpaid-row-label {
    color: #7a756d;
}

.opc-unpaid-row-value {
    font-weight: 600;
    color: #2d2a26;
}

.opc-unpaid-row-value.opc-value-red {
    color: #e74c3c;
}

.opc-unpaid-row.opc-unpaid-annual {
    background: rgba(231,76,60,0.04);
    padding: 10px 8px;
    border-radius: 8px;
    margin-top: 8px;
}

.opc-unpaid-row.opc-unpaid-annual .opc-unpaid-row-value {
    font-size: 18px;
    font-weight: 700;
    color: #e74c3c;
}

.opc-legal-notice {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    margin-top: 12px;
    background: rgba(52,152,219,0.06);
    border: 1px solid rgba(52,152,219,0.2);
    border-radius: 8px;
    font-size: 11px;
    color: #3498db;
    line-height: 1.5;
}

.opc-legal-notice i {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== 엑셀 다운로드 버튼 ===== */
.opc-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    background: #217346;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.opc-download-btn:hover {
    background: #1a5c38;
}

.opc-schedule-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.opc-schedule-header .opc-section-title {
    margin-bottom: 0;
}

/* ===== 면책 조항 ===== */
.opc-disclaimer {
    display: flex;
    gap: 8px;
    padding: 10px 12px;
    background: #faf9f7;
    border: 1px solid #e8e4dc;
    border-radius: 8px;
    font-size: 11px;
    color: #9e9a96;
    line-height: 1.5;
}

.opc-disclaimer i {
    color: #d4af37;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== 유틸리티 ===== */
.opc-hidden {
    display: none !important;
}

/* ===== prefers-reduced-motion ===== */
@media (prefers-reduced-motion: reduce) {
    .opc-section, .opc-amount-input, .opc-number-input, .opc-calculate-btn,
    .opc-detail-card, .opc-tab, .opc-checkbox-label, .opc-radio-label {
        transition: none !important;
    }
    .opc-section:hover, .opc-detail-card:hover, .opc-calculate-btn:hover {
        transform: none !important;
    }
}

/* ===== 반응형 - 태블릿 ===== */
@media (max-width: 900px) {
    .opc-main-layout {
        grid-template-columns: 1fr;
    }

    .opc-input-col {
        position: static;
        width: 100%;
    }

    .opc-result-col {
        width: 100%;
    }

    .tool-layout-input {
        max-width: 100%;
        overflow: hidden;
    }

    .opc-input-group input:not([type="radio"]):not([type="checkbox"]),
    .opc-input-group select {
        width: 100% !important;
        max-width: 100% !important;
    }

    .opc-summary-main {
        font-size: 28px;
    }
}

/* ===== 반응형 - 모바일 ===== */
@media (max-width: 768px) {
    .opc-result-summary {
        padding: 20px 16px;
    }

    .opc-summary-main {
        font-size: 28px;
    }

    .opc-detail-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .opc-detail-card {
        padding: 14px 10px;
    }

    .opc-detail-value {
        font-size: 20px;
    }

    .opc-wage-row {
        flex-direction: column;
        gap: 8px;
    }

    .opc-min-wage-btn {
        width: 100%;
        text-align: center;
    }

    .opc-checkbox-group {
        flex-direction: column;
    }

    .opc-radio-group {
        flex-direction: column;
    }
}

/* ===== 반응형 - 작은 모바일 ===== */
@media (max-width: 480px) {
    .tool-section,
    .tool-layout-split,
    .tool-layout-input,
    .tool-layout-result {
        max-width: 100%;
        overflow-x: hidden;
    }

    .opc-section {
        padding: 12px;
    }

    .opc-input-row {
        grid-template-columns: 1fr;
    }

    .opc-summary-main {
        font-size: 24px;
    }

    .opc-detail-cards {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .opc-detail-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 14px;
    }

    .opc-detail-label {
        justify-content: flex-start;
        margin-bottom: 0;
    }

    .opc-detail-value {
        font-size: 22px;
    }

    .opc-detail-table {
        font-size: 11px;
    }

    .opc-detail-table th,
    .opc-detail-table td {
        padding: 8px 4px;
    }

    .opc-payslip-table {
        font-size: 11px;
    }

    .opc-payslip-table th,
    .opc-payslip-table td {
        padding: 8px 4px;
    }
}

/* Excel button guard */
.tool-btn-excel {
  background: #59ab79;
  border-color: #59ab79;
}

.tool-btn-excel:hover,
.tool-btn-excel:focus-visible {
  background: #4f9f70;
  border-color: #4f9f70;
}

