body {
    font-family: system-ui, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #333;
}

.generator-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.options {
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
}

.options label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.generate-btn {
    padding: 10px 20px;
    background-color: #0066ff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.generate-btn:hover {
    background-color: #0052cc;
}

#quantity {
    width: 60px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.output-container {
    position: relative;
    margin-top: 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
    padding: 15px;
}

.uuid-list {
    font-family: monospace;
    white-space: pre-wrap;
    word-break: break-all;
}

.uuid-item {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.uuid-item:last-child {
    border-bottom: none;
}

.copy-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #666;
}

.copy-button:hover {
    color: #333;
}

.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    display: none;
    z-index: 1000;
} 

.twitter-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    transition: all 0.2s ease;
}

.twitter-link:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #333;
} 