/*

TastyIgniter Orange Store-front theme

*/

/*** Basic ***/
html {
	position: relative;
	min-height: 100%;
}
body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: 'Arial', sans-serif;
}
body {
	background-color: #F5F5F5;
}
@media (max-width: 767px) {
	body {
		padding-bottom: 250px;
	}
}

/*** Main Header ***/
#main-header {
	background-color: #FF4900;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
#main-header .logo {
	padding: 10px 0;
}
#main-header .logo a {
	font-size: 27px;
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
}
#main-header .navbar-toggle {
	color: #FFF;
	right: 0;
	position: absolute;
	top: 8px;
	margin-bottom: 0;
	margin-top: 0;
}
.content-area {
	font-size: 18px;
	padding-top: 90px;
	min-height: 500px;
}
.img-holder {
	margin-left: -10px;
}
#page-footer {
	background-color: #595959;
	position: absolute;
	bottom: 0;
	width: 100%;
}
#page-footer .main-footer, #page-footer .main-footer a {
	color: rgba(255,255,255,0.8);
}
#page-footer .bottom-footer {
	background-color: #FBFBFB;
}
#page-footer .bottom-footer, #page-footer .bottom-footer a {
	color: #686868;
}

/* 添加自定义样式 */
.btn-primary {
    background-color: #FF4900;
    border-color: #FF4900;
}

.btn-primary:hover {
    background-color: #E54200;
    border-color: #E54200;
}

.card {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-link {
    color: #333;
}

.nav-link:hover {
    color: #FF4900;
}

/* 桌号信息样式 */
.table-info-badge {
    background-color: #FF4900;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.table-info-badge i {
    margin-right: 10px;
    font-size: 20px;
}