 @import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

 
body { margin: 0; font-family: 'Pretendard', sans-serif; background-color: #f7f8fc; color: #333; }
#ongage_container { display: flex; min-height: 100vh; }

 
.sidebar {
    width: 260px !important;
    background-color: #27216a;
    color: #fff;
    padding: 30px 20px;
    top: 0;
    height: 100vh;
    box-sizing: border-box;
 
}

.sidebar .logo-area { margin-bottom: 50px; text-align: left; }
.sidebar .logo-area h1 {
    color: #fff;
    font-size: 1.8rem;
    margin: 0;
    letter-spacing: -1px;
    font-weight: 800;
}

.sidebar nav ul { list-style: none; padding: 0; }
.sidebar nav ul li { margin-bottom: 5px; }
.sidebar nav ul li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 12px 15px;
    transition: 0.3s;
    border-radius: 8px;
    font-weight: 500;
    font-size:18px;
}

 
.sidebar nav ul li a.active {
    color: #fff;
    background-color: #4e3df5;  
}

.sidebar nav ul li a:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

 
.main-content { flex: 1; padding: 30px 40px; box-sizing: border-box; }

 
.main-header {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header h2 { margin: 0; font-size: 1.3rem; color: #111; font-weight: 700; }
.main-header .user-info { display: flex; align-items: center; gap: 15px; font-size: 0.9rem; }
.main-header .user-info .welcome { color: #888; }
.main-header .user-info .name { color: #4e3df5; font-weight: 600; }
.main-header .logout-btn {
    background-color: #f7f8fc;
    border: 1px solid #ddd;
    color: #555;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
}

 
.card-section { display: grid; gap: 20px; }
.card {
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 25px;
    transition: 0.2s;
    position:relative;
}

  
.top-card-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr; 
    gap: 20px;
    margin-bottom: 20px;
}

 
.status-indicator-bar { height: 1px; width: 100%; }  

.status-box .label { font-size: 0.85rem; color: #a0aec0; margin-bottom: 10px; }
.status-text { font-size: 2.2rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }
  
.toggle-btn {
    width: 20%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    color:#94a3b8;
    text-align:center;
    position:absolute;
    right:30px;
    top:30px;
}
.toggle-btn span{
    display:block;
    font-size:40px;
    margin-bottom: 10px;
}
.toggle-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background:#aaa;
}

 
.op-time-area { background-color: #fff; padding: 25px; border-radius: 12px; border: 1px solid #eee; }
.op-time-area .title { font-size: 0.85rem; color: #a0aec0; margin-bottom: 10px; }
.op-time-text { font-size: 1.8rem; font-weight: 800; color: #2d3748; letter-spacing: -1px; }
.op-time-area .desc { font-size: 0.8rem; color: #a0aec0; margin-top: 15px; }

 
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.section-header h4 { margin: 0; color: #111; font-size: 1.2rem; font-weight: 700; }
.btn-primary-small {
    background-color: #4e3df5;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
}

 
.notice-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: #2d3748;
}
.notice-item:last-child { border-bottom: none; }
.notice-item .date { color: #a0aec0; font-size: 0.8rem; float: right; }

 
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.menu-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s, border-color 0.2s;
    cursor: pointer;
}

.menu-card:hover { transform: translateY(-3px); border-color: #4e3df5; }

.menu-card .menu-img {
    width: 100%;
    height: 140px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 15px;
}

.menu-card .menu-name { font-size: 1rem; font-weight: 700; color: #2d3748; margin-bottom: 8px; }
.menu-card .menu-price { font-size: 0.9rem; color: #4e3df5; font-weight: 600; }

 
.menu-add-card {
    border: 2px dashed #ddd;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #a0aec0;
    min-height: 240px;
    transition: border-color 0.3s;
}

.menu-add-card span.plus-icon { font-size: 2.5rem; margin-bottom: 10px; }
.menu-add-card span.text { font-size: 0.9rem; }
.menu-add-card:hover { border-color: #4e3df5; color: #4e3df5; }
.ongage-contents{
    display:flex;
}