body {
    font-family: "Arial", sans-serif;
    background-color: #f8f9fa;
    color: #495057;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #343a40;
    margin-bottom: 20px;
}

.content {
    text-align: center;
    margin-bottom: 20px;
}

.status {
    font-size: 1rem;
    color: #28a745;
}

.data {
    font-family: "Courier New", Courier, monospace;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
    white-space: pre-wrap;
    word-wrap: break-word;

    text-align: left;
    display: block;
}

.error {
    color: #dc3545;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 10px;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s ease-in-out;
}

.btn:hover {
    background-color: #0056b3;
}

.instructions {
    font-size: 1rem;
    text-align: center;
    margin-top: 30px;
}

.instructions pre {
    background-color: #f1f1f1;
    padding: 10px;
    border-radius: 5px;
    margin: 15px 0;
    font-size: 1rem;
    white-space: pre-wrap;
    word-wrap: break-word;

    text-align: left;
    display: block;
}

.token-container {
    text-align: center;
    margin-top: 20px;
}

.clickable {
    cursor: pointer;
    user-select: all;
    transition: background-color 0.2s ease-in-out;
}

.clickable:hover {
    background-color: #e9ecef;
}

.copy-text {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 5px;
    font-style: italic;
}

a {
    color: blue;
}