/* Bcrypt Generator Custom Styles */
.bcrypt-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}
.bcrypt-result-box {
    font-family: monospace;
    font-size: 14px;
    word-break: break-all;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
}
.strength-bar-container {
    height: 6px;
    background: #e2e8f0;
    border-radius: 99px;
    overflow: hidden;
}
.strength-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
}
.cost-badge {
    background: #eff6ff;
    color: #2563eb;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
}
.verification-badge {
    font-size: 14px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.verification-badge.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.verification-badge.danger {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
