.lbg-wrapper {
max-width: 640px;
margin: 0 auto;
padding: 40px 40px 32px;
background: #ffffff;
border-radius: 20px;
box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
box-sizing: border-box;
}
.lbg-wrapper * {
box-sizing: border-box;
}
.lbg-title {
text-align: center;
font-size: 32px;
font-weight: 800;
color: #14213d;
margin: 0 0 14px;
position: relative;
padding-bottom: 14px;
}
.lbg-title::after {
content: "";
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 56px;
height: 4px;
border-radius: 2px;
background: #0a66c2;
}
.lbg-subtitle {
text-align: center;
color: #6b7280;
font-size: 15px;
margin: 0 0 28px;
}
.lbg-label {
display: block;
font-weight: 700;
font-size: 14px;
color: #14213d;
margin: 18px 0 8px;
}
.lbg-info {
cursor: help;
color: #94a3b8;
font-size: 13px;
margin-left: 2px;
}
.lbg-input,
.lbg-select {
width: 100%;
padding: 13px 16px;
border: 1px solid #e2e8f0;
border-radius: 10px;
font-size: 15px;
color: #1f2937;
background: #f9fafb;
outline: none;
transition: border-color 0.15s ease, box-shadow 0.15s ease;
appearance: none;
-webkit-appearance: none;
}
.lbg-select {
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23334155' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: right 14px center;
background-size: 18px;
padding-right: 40px;
}
.lbg-input:focus,
.lbg-select:focus {
border-color: #0a66c2;
box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.12);
background: #ffffff;
}
.lbg-input::placeholder {
color: #9ca3af;
}
.lbg-btn-row {
display: flex;
gap: 12px;
margin-top: 24px;
flex-wrap: wrap;
}
.lbg-button {
flex: 1;
min-width: 200px;
position: relative;
border: none;
border-radius: 10px;
padding: 15px 20px;
font-size: 15px;
font-weight: 700;
cursor: pointer;
background: #0a66c2;
color: #ffffff;
transition: background 0.15s ease, transform 0.05s ease;
}
.lbg-button:hover {
background: #084e96;
}
.lbg-button:active {
transform: scale(0.99);
}
.lbg-button-secondary {
background: #ffffff;
color: #0a66c2;
border: 1px solid #cfe0f4;
}
.lbg-button-secondary:hover {
background: #f4f9ff;
}
.lbg-button:disabled {
opacity: 0.65;
cursor: not-allowed;
}
.lbg-spinner {
display: inline-block;
width: 14px;
height: 14px;
margin-left: 8px;
border: 2px solid rgba(255, 255, 255, 0.4);
border-top-color: #ffffff;
border-radius: 50%;
vertical-align: middle;
animation: lbg-spin 0.7s linear infinite;
}
.lbg-button-secondary .lbg-spinner {
border: 2px solid rgba(10, 102, 194, 0.25);
border-top-color: #0a66c2;
}
@keyframes lbg-spin {
to {
transform: rotate(360deg);
}
}
.lbg-result-block {
margin-top: 28px;
border-top: 1px solid #f1f5f9;
padding-top: 20px;
}
.lbg-results {
border: 1px dashed #cbd5e1;
border-radius: 12px;
padding: 20px;
min-height: 60px;
background: #f9fafb;
}
.lbg-empty-state {
margin: 0;
text-align: center;
color: #9ca3af;
font-size: 14px;
}
.lbg-bio-card {
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 10px;
padding: 16px 18px;
margin-bottom: 12px;
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 12px;
}
.lbg-bio-card:last-child {
margin-bottom: 0;
}
.lbg-bio-text {
white-space: pre-line;
font-size: 14.5px;
line-height: 1.6;
color: #1f2937;
margin: 0;
flex: 1;
}
.lbg-copy-btn {
flex-shrink: 0;
border: 1px solid #cfe0f4;
background: #ffffff;
color: #0a66c2;
font-size: 13px;
font-weight: 700;
padding: 8px 14px;
border-radius: 8px;
cursor: pointer;
transition: background 0.15s ease, border-color 0.15s ease;
}
.lbg-copy-btn:hover {
background: #0a66c2;
color: #ffffff;
border-color: #0a66c2;
}
.lbg-copy-btn.lbg-copied {
background: #16a34a;
border-color: #16a34a;
color: #ffffff;
}
#lbg-result-count {
font-weight: 400;
color: #9ca3af;
margin-left: 4px;
}
.lbg-copy-msg {
margin-top: 10px;
font-size: 13px;
color: #16a34a;
min-height: 16px;
}
.lbg-error-msg {
color: #dc2626;
font-size: 14px;
text-align: center;
margin: 0;
}
@media (max-width: 480px) {
.lbg-wrapper {
padding: 28px 20px 24px;
border-radius: 14px;
}
.lbg-title {
font-size: 24px;
}
.lbg-btn-row {
flex-direction: column;
}
.lbg-button {
min-width: 100%;
}
}