/* html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
} */

/* メインコンテンツエリアを拡張してフッターを下に押し出す */
main.container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.container{
    margin: 0;
}

/* .tax-span {
    display: none;
} */

.loader-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.loader {
    border: 16px solid #f3f3f311;
    /* Light grey */
    border-top: 16px solid #01A3C9;
    /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.history-container {
    flex: 1;
    display: none;
}

.history-list,
.history-top,
.no-history,
.loader-container {
    position: relative;
    z-index: 2;
}

.no-history {
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.6rem;
    align-items: center;
}

.history-unconnected-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.history-wallet-connect {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.history-wallet-connect p {
    font-weight: 800;
    margin-bottom: 40px;
}

.pc.history-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.history-back-btn,
.history-myapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}


.history-back-btn a,
.history-myapp-btn a {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 5px;
    color: #000000;
    background-color: #f1f1f1;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.history-myapp-btn a:hover {
    background-color: #cacaca;
    color: #ffffff;
}

.history-myapp-btn a {
    background-color: #01A3C9;
    color: #ffffff;
}

.history-title {
    flex: 1;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #000000;
}

/* .history-list {
    display: flex;
    justify-content: center;
}

.history-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.history-list-title,
.history-item,
.summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 70vw;
    gap: 120px;
    font-weight: bold;
    color: black;
}

.details {
    display: flex;
    justify-content: center;
}

.history-ulist hr {
    margin-top: 20px;
} */


/* .history-list-title {
    margin-bottom: 50px;
    display: none;
}

.history-ulist hr {
    border-top: 2px solid black;
    filter: drop-shadow(0 0 1.75rem black);
} */

#history-convini{
    background-color: #01A3C9;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.back-link{
    font-size: 1.4rem;
}

.history-item {
    background-color: #f2f2f2;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.history-item p {
    margin: 10px 0;
}

.summary{
    font-weight: bold;
}

.details a{
    text-decoration: underline;
    color: blue;
}