﻿@charset "UTF-8";

.container {
    width:600px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.container p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
    text-align:left;
}
@media (max-width: 450px) {
    .container {
    width:380px;
   }
    .container p {
    font-size: 1.0rem;
   }
}


#fileList {
    display: flex;
    flex-direction: column; /* ボタンを縦に並べる */
}

button {
    background-color: #A8D5BA; /* 薄いグリーン */
    color: black;
    border: none;
    padding: 12px 30px;
    margin-bottom: 10px; /* ボタン間隔 */
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 200px; /* ボタン幅を設定 */
}

button:hover {
    background-color: #6BBF91; /* ボタンホバー時の色 */
}