/* =================================================================== */
/* 페이지 특정 CSS (비밀번호 생성기용)                                */
/* =================================================================== */
.password-display-wrapper {
    position: relative;
    margin-bottom: var(--rg-spacing-small);
}
#password-output {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding-right: 60px; /* 복사 버튼 공간 확보 */
    background-color: var(--rg-color-secondary);
}
#copy-password-btn {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.strength-meter {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: var(--rg-spacing-large);
}
.strength-bar {
    width: 100%;
    height: 8px;
    background-color: var(--rg-color-disabled);
    border-radius: 4px;
    overflow: hidden;
}
.strength-bar-inner {
    height: 100%;
    width: 0%; /* JS will update this */
    border-radius: 4px;
    transition: width 0.3s, background-color 0.3s;
}
/* Strength Levels */
.strength-bar-inner.level-1 { width: 25%; background-color: #e74c3c; }
.strength-bar-inner.level-2 { width: 50%; background-color: #f1c40f; }
.strength-bar-inner.level-3 { width: 75%; background-color: #2ecc71; }
.strength-bar-inner.level-4 { width: 100%; background-color: #27ae60; }

#strength-text {
    font-size: 0.85rem;
    font-weight: 600;
}
/* Strength Text Colors */
.strength-text.level-1 { color: #e74c3c; }
.strength-text.level-2 { color: #f1c40f; }
.strength-text.level-3 { color: #2ecc71; }
.strength-text.level-4 { color: #27ae60; }


.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--rg-spacing-large);
}
.options-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 600px) {
    .options-grid { grid-template-columns: 1fr; }
}