@charset "UTF-8";@charset "UTF-8";

/* 右下のフローティングアクションボタン（＋ボタン）のデザイン */
.fab-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.fab-btn:hover {
    transform: scale(1.1);
}

/* --- ハンバーガーメニュー用の共通デザイン --- */
.app-header {
    display: flex;
    align-items: center;
    background-color: #343a40;
    color: white;
    padding: 15px 20px;
}
.header-title {
    margin: 0 auto;
    font-size: 1.25rem;
    font-weight: bold;
}
.header-title a {
    color: white;
    text-decoration: none;
}
.hamburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    z-index: 1001;
}
.hamburger span {
    display: block;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}
.sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100vh;
    background-color: #fff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.2);
    transition: 0.3s;
    z-index: 1050;
    overflow-y: auto;
}
.sidebar.active {
    left: 0;
}
.sidebar-header {
    text-align: right;
    padding: 15px;
    border-bottom: 1px solid #eee;
}
.close-btn {
    cursor: pointer;
    font-size: 1.5rem;
    color: #666;
}
.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-list li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-weight: bold;
}
.sidebar-list li a:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1040;
}
.overlay.active {
    display: block;
}