body {
    font-family: Arial, sans-serif;
    background: #f9f9f9;
}

/* #app {
    padding: 12px;
} */
.container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    background: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 640px) {
    /* #app {
        padding: 8px;
    } */
    .container {
        max-width: 100%;
        padding: 12px;
    }
}

/* textarea,
select,
button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 16px;
} */

.result {
    background: #eee;
    padding: 10px;
    border-radius: 4px;
    word-break: break-word;
}

.generate-button {
    background-color: #007BFF;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    padding: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.generate-button:hover {
    background-color: #0056b3;
}

.nav {
    margin-bottom: 20px;
    padding: 10px;
    text-align: center;
}

.nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #0056b3;
}

.xml-viewer {
    background: #f4f4f4;
    border: 1px solid #ccc;
    padding: 10px;
    overflow-x: auto;
    white-space: pre;
    font-family: monospace;
    color: #333;
}

/* 出力結果の見た目強化（UUID, Passwordなど） */
.output-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1em;
}

.output-item {
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px 15px;
    font-family: monospace;
    font-size: 1rem;
    color: #333;
    position: relative;
    transition: background 0.3s;
}

.output-item:hover {
    background: #eef2f7;
}

.output-item::after {
    content: "📋";
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #888;
}

.output-item::after:hover {
    color: #000;
}

.samltest-save-button,
.samltest-action-button {
    border: 1px solid transparent;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.samltest-save-button:hover,
.samltest-action-button:hover {
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
    transform: translateY(-1px);
}

.samltest-save-button:focus-visible,
.samltest-action-button:focus-visible {
    outline: 3px solid rgba(59, 130, 246, 0.35);
    outline-offset: 2px;
}

.samltest-save-button--blue {
    background-color: #2563eb;
    border-color: #1d4ed8;
    color: #ffffff;
}

.samltest-save-button--blue:hover {
    background-color: #1d4ed8;
}

.samltest-save-button--orange {
    background-color: #ea580c;
    border-color: #c2410c;
    color: #ffffff;
}

.samltest-save-button--orange:hover {
    background-color: #c2410c;
}

.samltest-save-button--emerald {
    background-color: #059669;
    border-color: #047857;
    color: #ffffff;
}

.samltest-save-button--emerald:hover {
    background-color: #047857;
}

.samltest-action-button--blue {
    background-color: #2563eb;
    border-color: #1d4ed8;
    color: #ffffff;
}

.samltest-action-button--blue:hover {
    background-color: #1d4ed8;
}

.samltest-action-button--orange {
    background-color: #ea580c;
    border-color: #c2410c;
    color: #ffffff;
}

.samltest-action-button--orange:hover {
    background-color: #c2410c;
}

.samltest-action-button--emerald {
    background-color: #059669;
    border-color: #047857;
    color: #ffffff;
}

.samltest-action-button--emerald:hover {
    background-color: #047857;
}

.samltest-action-button--slate {
    background-color: #334155;
    border-color: #1e293b;
    color: #ffffff;
}

.samltest-action-button--slate:hover {
    background-color: #1e293b;
}
