/* プロフィールカード */
.modern-profile-card {
	background: white;
	border-radius: 12px;
	padding: 25px 15px;
	margin-bottom: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border: none;
	color: #333;
}

.modern-profile-card .prf_img img {
	border: 4px solid #dee2e6;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
	width: 100px;
	height: 100px;
}

.modern-profile-card .prf_img img:hover {
	transform: scale(1.05);
}

.modern-profile-card .profile-info {
	color: #6c757d;
	font-size: 12px;
	margin-top: 10px;
}

.modern-profile-card .profile-name {
	color: #333;
	font-size: 18px;
	font-weight: bold;
	margin-top: 8px;
}

.modern-profile-card .profile-name:hover {
	color: #555;
}

/* ステータスカード */
.modern-stats {
	background: transparent;
	border-radius: 0;
	padding: 15px 5px;
	margin-top: 15px;
	box-shadow: none;
}

.modern-stats .stat-row {
	display: flex;
	justify-content: space-around;
}

.modern-stats .stat-row.point-row {
	border-bottom: 1px solid #ecf0f1;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.modern-stats .stat-item {
	text-align: center;
	flex: 1;
	padding: 5px;
	transition: transform 0.2s ease;
}

.modern-stats .stat-item:hover {
	transform: translateY(-3px);
}

.modern-stats .stat-item a {
	color: #2c3e50;
	text-decoration: none;
}

.modern-stats .stat-number {
	font-size: 24px;
	font-weight: bold;
	color: #667eea;
	display: block;
}

.modern-stats .stat-label {
	font-size: 11px;
	color: #7f8c8d;
	margin-top: 3px;
}

/* ポイントを強調 */
.modern-stats .point-item .stat-number {
	font-size: 32px;
	font-weight: bold;
	color: #5a5a5a;
	display: block;
}

.modern-stats .point-item .stat-label {
	font-size: 12px;
	color: #7f8c8d;
	margin-top: 5px;
	display: block;
}

.modern-stats .okini-item .stat-number {
	color: #5a5a5a;
}

.modern-stats .fan-item .stat-number {
	color: #5a5a5a;
}

/* モダンメニュー */
.modern-menu {
	margin-top: 20px;
}

.modern-menu .menu-item {
	background: white;
	border-radius: 12px;
	padding: 15px 18px;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-decoration: none;
	color: #2c3e50;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	border: none;
}

.modern-menu .menu-item:hover {
	transform: translateX(5px);
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 20%);
}

.modern-menu .menu-item i {
	font-size: 18px;
	margin-right: 12px;
	width: 25px;
	text-align: center;
}

.modern-menu .menu-item .menu-text {
	flex: 1;
}

/* メニューアイコンの色分け */
.modern-menu .menu-item:nth-child(1) i { color: #3498db; }
.modern-menu .menu-item:nth-child(2) i { color: #27ae60; }
.modern-menu .menu-item:nth-child(3) i { color: #9b59b6; }
.modern-menu .menu-item:nth-child(4) i { color: #e67e22; }
.modern-menu .menu-item:nth-child(5) i { color: #e74c3c; }
.modern-menu .menu-item:nth-child(6) i { color: #f39c12; }
.modern-menu .menu-item:nth-child(7) i { color: #1abc9c; }
.modern-menu .menu-item:nth-child(8) i { color: #34495e; }
.modern-menu .menu-item:nth-child(9) i { color: #95a5a6; }

/* バッジデザイン */
.modern-menu .modern-badge {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 4px 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: bold;
	min-width: 24px;
	text-align: center;
	box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
	animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
	0%, 100% {
		box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
	}
	50% {
		box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
	}
}

/* ログアウトボタン控えめスタイル */
.modern-menu .logout-item {
	background: #f8f9fa;
	color: #95a5a6;
	margin-top: 15px;
	border: 1px solid #ecf0f1;
}

.modern-menu .logout-item:hover {
	background: #ecf0f1;
	transform: translateX(5px);
	color: #7f8c8d;
}

.modern-menu .logout-item i {
	color: #95a5a6 !important;
}

.modern-menu .logout-item:hover i {
	color: #7f8c8d !important;
}

/* 予約情報ボックス */
.modern-reservation-box .panel.panel-default {
	border: none !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.modern-reservation-box .panel-heading {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
	border: none !important;
	padding: 15px 20px !important;
	border-radius: 15px 15px 0 0 !important;
}

.modern-reservation-box .panel-body,
.modern-reservation-box .table {
	background: white !important;
}

.modern-reservation-box .panel-title a {
	color: white !important;
	font-weight: 600;
	text-decoration: none;
}

.modern-reservation-box .panel-title .badge {
	background: white !important;
	color: #667eea !important;
	font-weight: bold;
	padding: 5px 10px;
	border-radius: 20px;
}

/* 予約情報内のキャスト画像を丸く */
.modern-reservation-box .cast-photo-wrapper {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid white;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	display: block;
	margin: 0 auto;
	position: relative;
}

.modern-reservation-box .cast-photo-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

/* テーブルのモダン化 */
.modern-reservation-box .table {
	margin-bottom: 0;
}

.modern-reservation-box .table td {
	border-color: #ecf0f1;
	vertical-align: middle;
	padding: 12px;
}

/* 料金を大きく表示 */
.modern-reservation-box .price-amount {
	font-size: 24px !important;
	font-weight: bold !important;
	display: inline-block;
	margin-right: 10px;
}

.modern-reservation-box .table-bordered {
	border-radius: 10px;
	overflow: hidden;
}

/* ステップバーの色のみ変更 */
.modern-reservation-box .step_bar li.current {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
	color: #fff !important;
}

.modern-reservation-box .step_bar li.current::before {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.modern-reservation-box .step_bar li.current::after {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.modern-reservation-box .step_bar li.current2 {
	background: #f39c12 !important;
	color: #fff !important;
}

.modern-reservation-box .step_bar li.current2::before {
	background: #f39c12 !important;
}

.modern-reservation-box .step_bar li.current2::after {
	background: #f39c12 !important;
}

/* アラートボックスのモダン化 */
.modern-reservation-box .alert {
	border-radius: 10px;
	border: none;
}

.modern-reservation-box .alert-danger {
	background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
	color: #e74c3c;
}

.modern-reservation-box .alert-info {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
	color: #3498db;
}

/* 部屋番号入力フォーム */
.modern-reservation-box .room-number-form {
	background: #f8f9fa;
	padding: 15px;
	border-radius: 10px;
	margin-top: 15px;
}

.modern-reservation-box .room-input {
	border-radius: 8px;
	border: 2px solid #e0e0e0;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}

.modern-reservation-box .room-input:focus {
	border-color: #667eea;
	box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.modern-reservation-box .room-submit-button {
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.modern-reservation-box .room-submit-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* 部屋番号更新ボタン（緑）にデザイン追加 */
.modern-reservation-box .btn-success.room-submit-button {
	background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
	border: none;
	box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

.modern-reservation-box .btn-success.room-submit-button:hover {
	background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
	box-shadow: 0 4px 15px rgba(39, 174, 96, 0.4);
	transform: translateY(-2px);
}

/* 明細ボタン */
.modern-reservation-box .btn-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border: none;
	border-radius: 20px;
	padding: 5px 15px;
	transition: all 0.3s ease;
}

.modern-reservation-box .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

/* 明細モーダルのデザイン */
#meisai {
	border-radius: 20px;
	overflow: hidden;
	max-width: 600px;
	margin: 50px auto;
}

#meisai .modal-body {
	background: white;
	padding: 25px;
	border-radius: 20px 20px 0 0;
}

#meisai .modal-body table {
	margin-bottom: 0;
}

#meisai .modal-body table td {
	padding: 12px;
	border-color: #ecf0f1;
}

#meisai .modal-body table th {
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 20%);
	color: #2c3e50;
	font-weight: 600;
	padding: 12px;
}

#meisai .text-right {
	background: #f8f9fa;
	padding: 15px;
	border-radius: 0 0 20px 20px;
}

#meisai .btn-default {
	border-radius: 20px;
	padding: 8px 20px;
	border: 2px solid #ecf0f1;
	transition: all 0.3s ease;
}

#meisai .btn-default:hover {
	background: #ecf0f1;
	transform: translateY(-2px);
}
