/* uuid-generator.css */

/* Center the form and UUID container */
.uuid-container {
    text-align: center;
    margin-top: 15px;
    align-items: center;
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    width: 100%;
    max-width: auto;
    margin: 20px auto;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-sizing: border-box;
}

.uuid-generator-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    margin-top: 10px;
}

.uuid-container select,
.uuid-container input[type="number"] {
    margin-left: 0px;
    margin-bottom: 5px;
    padding: 5px;
    font-size: 14px;
}

.generate-uuid-button {
    background: #0073aa;
    font-weight: bold;
	font-size: 16px;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.3s ease;
    margin-top: 20px;
}

.generate-uuid-button:hover {
    background: #005177;
}

.generate-uuid-button:active {
    transform: scale(0.95);
}

/* Container to display the UUIDs */
.generated-uuids {
    margin-top: 0px;
    width: 100%;
    text-align: center;
}

.generated-uuids h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.uuid-item {
    font-size: 16px;
    background: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    background-color: #f9f9f9;
}

#uuid_count {
    width: 100%;
}

#uuid_count_value {
    font-weight: bold;
    margin-left: 0px;
}

.uuid-container input[type="checkbox"] {
    margin-left: 0px;
    #width: 24px;
    #height: 24px;
    #position: relative;
    #top: 6px;
}
