* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    text-align: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

.logo {
    width: 150px;
    margin: 0 auto;
}

h2 {
    color: #333;
    margin-top: 20px;
}

p {
    color: #555;
    margin: 10px 0;
}

.input-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

input {
    padding: 10px;
    width: 70%;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}

button {
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: box-shadow 0.3s;
}

#suggest-keplr-chain {
    background-color: #000000;
}

button:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(0px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: backdrop-filter 0.5s ease;
}

.overlay.show {
    backdrop-filter: blur(10px);
}

.notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    width: 400px;
    border-radius: 15px;
    color: white;
    z-index: 1000;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    text-align: center;
    font-family: Arial, sans-serif;
}

#header {
    font-size: 24px;
}

#message {
    margin: 10px 0;
}

#close-btn {
    background-color: white;
    color: black;
    border: 2px solid black;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
    font-family: Helvetica, sans-serif;
}

#explorer-btn {
    background-color: white;
    color: black;
    border: 2px solid black;
    border-radius: 25px;
    padding: 10px 20px;
    cursor: pointer;
    font-family: Helvetica, sans-serif;
    margin-top: 10px;
}



.notification.success {
    background-color: green;
}

.notification.notice {
    background-color: yellow;
    color: black;
}

.notification.error {
    background-color: red;
}

.hidden {
    display: none;
}

.show {
    display: block;
    opacity: 1;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
}

#loading-gif {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-left: 10px;
}

.faq-section h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ccc;
    padding: 15px 0;
    display: block;
}

.faq-question {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    align-items: center;
}

.faq-question::before {
    content: "+";
    margin-right: 10px;
}

.faq-answer {
    margin-top: 10px;
    font-size: 16px;
    display: none;
    text-align: left;
}

.faq-answer.show {
    display: block;
}

.faq-question.open::before {
    content: "-";
}

