/* 
 * カスタムスタイル
 */

/* 全体のスタイル */
body {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* フッターを下部に固定 */
footer {
    margin-top: auto;
}

/* カードのスタイル */
.card {
    border-radius: 0.5rem;
    overflow: hidden;
}

.card-header {
    border-radius: 0 !important;
}

/* フォームのスタイル */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* テーブルのスタイル */
.table th {
    background-color: #f8f9fa;
}

/* 領収書画像のサムネイル */
.receipt-thumbnail {
    max-width: 100px;
    max-height: 100px;
    cursor: pointer;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 2px;
}

/* 領収書画像のモーダル */
.receipt-modal-image {
    max-width: 100%;
    max-height: 80vh;
}

/* ダッシュボードのカード */
.dashboard-card {
    transition: transform 0.2s;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

/* アイコン付きボタン */
.btn i {
    margin-right: 0.5rem;
}

/* ページネーション */
.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* フィルターフォーム */
.filter-form {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.875rem;
    }
    
    .btn-sm-block {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
}