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

/* クイックアクセスカード */
.quick-access-card {
    transition: transform 0.2s, box-shadow 0.2s;
}

.quick-access-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

/* フッター */
.footer {
    position: relative;
    bottom: 0;
    width: 100%;
}

/* フォーム */
.form-label.required::after {
    content: " *";
    color: red;
}

/* ナビゲーション */
.navbar-brand {
    font-weight: bold;
}

/* カード */
.card-header {
    font-weight: 500;
}

/* アラート */
.alert {
    border-radius: 0.5rem;
}

/* ボタン */
.btn {
    border-radius: 0.375rem;
}

/* 入力フィールド */
.form-control:focus,
.form-select:focus {
    border-color: #198754;
    box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
}
