

@font-face {
    font-family: 'PixelMplus12';
    src: url('../../fonts/PixelMplus12-Regular.ttf') format('truetype');
}

* {
    -webkit-font-smoothing: none;
    font-smooth: never;
}

body {
    margin: 0;
    padding: 20px;
    background: transparent;
    font-family: 'PixelMplus12';
    color: #333355;
}

#poem-container {
    display: flex;
    gap: 20px;
    height: 500px;
}

#poem-list-side {
    width: 250px;
    border-right: 1px dotted #99BBCC;
    overflow-y: auto;
}

#poem-titles {
    list-style: "・";
    padding-left: 15px;
    margin: 0;
}

#poem-titles li {
    margin-bottom: 10px;
}

#poem-titles a {
    font-family: 'PixelMplus12';
    font-size: 12px;
    color: #3355CC;
    text-decoration: underline;
    cursor: pointer;
}

#poem-content-side {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #99BBCC;
}

#poem-display {
    white-space: pre-wrap;
    line-height: 1.6;
    font-size: 11px;
}

.placeholder {
    color: #99BBCC;
    font-style: italic;
}