/* Inherits professional styles */

.uuid-tool-container {
    max-width: 800px;
    margin: 0 auto;
}

.section-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #334155;
    font-size: 16px;
}

.single-output-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 5px;
}

#uuid-single {
    flex-grow: 1;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 22px;
    letter-spacing: 1px;
    padding: 15px;
    border: 2px solid #dfe6ed;
    border-radius: 8px;
    color: #1e293b;
    background: #fff;
    text-align: center;
    height: 54px;
}

#uuid-single:focus {
    border-color: var(--ast-global-color-0, #0274be);
    outline: none;
}

.output-actions {
    display: flex;
    gap: 8px;
}

.btn-action {
    width: 54px;
    height: 54px;
    border: 1px solid #c3c4c7;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #475569;
    transition: all 0.2s ease;
}

.btn-action:hover {
    background: #f1f5f9;
    color: #1e293b;
    border-color: #94a3b8;
}

.btn-action.primary {
    background: var(--ast-global-color-0, #0274be);
    color: #fff;
    border-color: var(--ast-global-color-0, #0274be);
}

.btn-action.primary:hover {
    background: #005177;
    border-color: #005177;
}

.copy-feedback {
    color: #16a34a;
    font-weight: 600;
    font-size: 14px;
    height: 20px;
    text-align: center;
}

.copy-feedback.hidden {
    opacity: 0;
}

.tool-divider {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid #e2e8f0;
}

/* Bulk Section */
.bulk-section {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.bulk-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

#bulk-count {
    width: 70px;
    padding: 8px 12px;
    border: 1px solid #c3c4c7;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
}

.bulk-output-wrapper {
    position: relative;
}

.btn-copy-bulk {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #c3c4c7;
}