.app-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
.shindan-switcher {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 150px;
    padding: 10px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.container {
    flex: 1;
    max-width: 80%;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

p {
    color: black;
    line-height: 1.5;
}

.link-container p {
    color: white;
}

input {
    width: calc(100% - 20px);
    padding: 10px;
    /*margin: 10px 0;*/
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}
button:hover {
    background-color: #0056b3;
}
.shindan-switcher button {
    width: 100%;
    margin-top: 0;
}

#result-display {
    margin-top: 20px;
    font-size: 1.1em;
    font-weight: bold;
    color: #007bff;
    min-height: 20px;
}
@media (max-width: 50%) {
    .app-layout {
        flex-direction: column;
        align-items: center;
    }
    .shindan-switcher {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
    }
    .shindan-switcher button {
        flex: 1;
    }
    .container {
        width: 90%;
    }
}

#result-display {
  white-space: pre-wrap;
}

.link-list a {
    text-color: white;
}
