/* 印刷ボタンのスタイル */
#print-button {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: #4a4a4a;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

#print-button:hover {
    background-color: #333;
}

#print-button:before {
    content: "🖨️";
    margin-right: 8px;
}

/* モバイル表示時は印刷ボタンを非表示 */
@media (max-width: 768px) {
    #print-button {
        display: none;
    }
}

/* 印刷時のスタイル */
@media print {
    #print-button {
        display: none;
    }
} 