body {
    background: linear-gradient(135deg, #71b7e6, #9b59b6);
    min-height: 100vh;
}

img.navbar-brand-icon {
    max-width: 100px;
    width: auto;
    min-height: 60px;
}

.content-wrapper {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    min-height: calc(100vh - 56px); /* Ensures the wrapper takes full height minus the navbar height */
    padding: 20px;
}

.container {
    max-width: 1480px;
    background: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

.form-container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.form-container img {
    width: 100px;
    margin-bottom: 20px;
}

.table-container {
    margin-bottom: 40px;
}

.result-container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.result-container img {
    width: 100px;
    margin: auto;
    margin-bottom: 20px;
}

#modalTokenContent {
    word-break: break-all;
}