/* 파일명: st003_hall.css */
/* [ST003] MAIN LOBBY DASHBOARD STYLES */

.st003-hall-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
    box-sizing: border-box;
    font-family: 'Gulim', 'Dotum', Tahoma, sans-serif;
}

.st003-hall-title {
    color: #00e5ff;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}

.st003-hall-subtitle {
    color: #888;
    font-size: 11px;
    margin-bottom: 20px;
}

/* 층(Floor) 구획 */
.st003-hall-floor {
    background-color: #121212;
    border: 1px solid #282828;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 4px;
}

/* 층별 타이틀 라벨 */
.st003-hall-floor-label {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.st003-hall-floor-label.f2 { color: #ffaa00; border-bottom: 1px dashed #443300; padding-bottom: 5px;}
.st003-hall-floor-label.f3 { color: #00ff66; border-bottom: 1px dashed #004411; padding-bottom: 5px;}

/* 버튼 그리드 (모바일 1열, 태블릿 이상 2열) */
.st003-hall-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (max-width: 600px) {
    .st003-hall-grid {
        grid-template-columns: 1fr;
    }
}

/* 대시보드 버튼 규격 */
.st003-hall-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 4px;
    text-decoration: none;
    color: #e0e0e0;
    transition: all 0.2s ease;
    cursor: pointer;
}

.st003-hall-btn:hover {
    background-color: #242424;
    border-color: #00e5ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.st003-hall-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.st003-hall-btn-title {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 4px;
    color: #ffffff;
}

.st003-hall-btn-desc {
    font-size: 11px;
    color: #888888;
    text-align: center;
}
