/* mysecrets/templates/secretank/javiv-d15.html */


/* サムネイル:テーブル内で一律サイズ・中央揃え・綺麗に表示 */
.javiv-thumbnail {
    width: 600px;
    height: 600px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
/* ダウンロードリンクデザイン */
.javiv-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;
}
.javiv-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;
    }

    .javiv-thumbnail {
        width: 400px;
        height: 400px;
    }
}