body {
    font-family: 'Noto Sans JP', sans-serif;
}

.card {
    border-radius: 16px;
}

/* 生成されたパスワードの行 */
.pwd-item {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.pwd-item:hover {
    border-color: #4a90e2;
    background-color: #fff;
}

.pwd-text {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: clamp(0.9rem, 4vw, 1.2rem); /* スマホで見やすく調整 */
    letter-spacing: 1px;
    word-break: break-all;
    line-height: 1.4;
}

/* 文字ハイライト */
.pwd-char-number { color: #0d6efd; } /* 青: 数字 */
.pwd-char-symbol { color: #dc3545; font-weight: 900; } /* 赤: 記号 */
.pwd-char-upper { color: #6f42c1; } /* 紫: 大文字 */
.pwd-char-lower { color: #212529; } /* 黒: 小文字 */

.strength-meter {
    height: 4px;
    width: 100%;
    background-color: #eee;
    margin-top: 4px;
    border-radius: 2px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    transition: width 0.3s ease, background-color 0.3s ease;
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid #dee2e6;
        padding-right: 2rem;
    }
}
