/* 全体の基本スタイル */
body {
    font-family: Arial, sans-serif;
    background-color: #f3f4f6;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

/* コンテナスタイル */
.container {
    max-width: 900px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: auto;
}

/* ヘッダースタイル */
h1 {
    font-size: 2rem;
    color: #4a90e2;
    text-align: center;
    margin-bottom: 20px;
}

.logout {
    text-align: right;
    margin-bottom: 20px;
}

.logout a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: bold;
}

/* カードグリッドレイアウト */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

/* カードのスタイル */
.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s;
    text-align: left;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 40px;
    color: #4a90e2;
    margin-bottom: 15px;
}

.card-title {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 10px;
}

.card-description {
    font-size: 0.9rem;
    color: #666;
}

/* フッタースタイル */
footer {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
}
