/* カスタムスタイル */
html, body {
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* トランジション効果 */
.transition {
    transition: all 0.3s ease;
}

/* フォームのフォーカス状態 */
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* カスタムボタンスタイル */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2563eb;
    color: white;
}

.btn-primary:hover {
    background-color: #1d4ed8;
}

/* 通知メッセージのアニメーション */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.notification {
    animation: fadeIn 0.3s ease-out;
}

/* ドロップダウンメニュー関連のスタイル追加 */
#user-dropdown {
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ホバーエフェクトの改善 */
#user-dropdown a:hover {
    background-color: #3b82f6;
    color: white;
    transition: all 0.2s ease;
}