/* style.css */

/* 全体のスタイル */
body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    line-height: 1.6;
}

h1 {
    color: #1a73e8;
    text-align: center;
}

p {
    text-align: center;
}

/* 白いカードのスタイル */
.card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 500px; /* カードの最大幅 */
    text-align: center;
    margin-top: 20px;
}

input[type="file"], button, input[type="number"] {
    margin-bottom: 20px;
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.settings {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.settings input[type="number"] {
    width: 100px;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* 結果表示エリア */
#resultArea {
    margin-top: 30px;
}

#resultArea h2 {
    font-size: 1.2rem;
    color: #333;
}

/* 画像表示のスタイル */
#resultArea img {
    max-width: 100%; /* これで画像がコンテナ内に収まる */
    height: auto;    /* 縦横比を維持 */
    margin-top: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* ダウンロードボタン */
#downloadLink {
    display: inline-block;
    margin-top: 15px;
    background-color: #28a745;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 4px;
}

#downloadLink:hover {
    background-color: #218838;
}
