/* mysecrets/templates/secretank/raw-manga.html.html */


/* タイトル名のテキスト設定 */
.rawmanga-title {
    font-size: 0.65rem;
    color: #2c3e50;
    padding: 2px 2px;
    white-space: normal;
    word-break: break-all;      /* どの文字でも改行可 */
    max-width: 75px;            /* 約15文字分 */
    line-height: 1.2;
    vertical-align: middle;
    cursor: pointer;
}
.rawmanga-title:hover {
    white-space: normal;
    background-color: #caf1f8;
    z-index: 10;
    position: relative;
    padding: 4px;
    border: 1px solid #c2c2c2;
}
/* サムネイル画像のスタイル */
.rawmanga-thumbnail {
    max-width: 100%;
    max-height: 600px;
    height: auto;
    width: auto;
    display: block;
    margin: auto;
    border-radius: 4px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
/* ダウンロードリンクのスタイル */
.rawmanga-download-links {
    list-style-type: none;
    padding: 0;
}
.rawmanga-download-link {
    display: block;
    text-decoration: none;
    padding: 8px 15px;
    background-color: #2f0b9c;
    color: white;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 8px;
}
.rawmanga-download-link:hover {
    background-color: #0056b3;
    color: white;
}

/* ==========================
   レスポンシブ調整
========================== */
/* スマホ画面 */
@media (max-width: 768px) {
    .mysecrets-container {
        padding: 10px;
    }
    .mysecrets-search-form {
        flex-direction: column;
        align-items: center;
    }
    .mysecrets-search-input {
        width: 100%;
    }
    .mysecrets-table-container {
        overflow-x: auto;
    }
    .mysecrets-table th,
    .mysecrets-table td {
        padding: 8px;
        font-size: 0.8rem;
    }
    .rawmanga-title {
        font-size: 0.7rem;
        max-width: 140px;
        padding: 1px 1px;
    }
    .rawmanga-thumbnail {
        max-height: 400px;
    }
    .mysecrets-search-button {
        width: 100%;
    }
}
