/* 기본 스타일 초기화 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 페이지 전체 스타일 */
body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
    flex-direction: column;
}

/* 에러 페이지 컨테이너 스타일 */
.error-container {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

/* 경고 아이콘 스타일 */
.warning-icon {
    font-size: 50px;
    color: #f39c12;
    margin-bottom: 20px;
}

/* 에러 제목 스타일 */
.error-title {
    font-size: 36px;
    color: #dc3545; /* 빨간색 */
    margin-bottom: 20px;
    font-weight: bold;
}

/* 에러 메시지 스타일 */
.error-message {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 20px;
}

/* 추가 정보 스타일 */
.error-info {
    font-size: 16px;
    color: #28a745; /* 초록색 */
    font-weight: bold;
}

/* JavaScript 비활성화 경고 스타일 */
.no-js-alert {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    font-size: 16px;
}
