/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 15px;
}


@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Header Top */
.wk-header-top {
    background-color: #364444;
    border-bottom: 1px solid #e9ecef;
    overflow: visible;
}

.wk-header-top .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.wk-header-top .language-label {
    color: white;
    margin-bottom: 0;
    line-height: 32px;
}

.language-selector-wrapper {
    position: relative;
    display: inline-block;
}

.language-selector {
    background: #364444;
    color: white;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-size: 16px;
    min-width: 60px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 5px 25px 5px 5px;
}

.language-selector-wrapper .chevron-down {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    pointer-events: none;
}

.language-selector option {
    color: black;
    font-weight: normal;
    background-color: white;
}

.lang-btn {
    background: none;
    border: 1px solid #dee2e6;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #495057;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: #e9ecef;
}

.lang-btn.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

/* Header Main */
.wk-header-main {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Main Content */
.content {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 40px 0;
}

.notice-box {
    text-align: center;
    max-width: 800px;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.notice-box h1 {
    font-size: 32px;
    color: #212529;
    margin-bottom: 20px;
    font-weight: 600;
}

.notice-box .message {
    font-size: 18px;
    color: #495057;
    line-height: 1.8;
    white-space: pre-line;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-selector {
        justify-content: center;
    }

    .logo {
        justify-content: center;
    }

    .notice-box {
        padding: 30px 20px;
    }

    .notice-box h1 {
        font-size: 24px;
    }

    .notice-box .message {
        font-size: 16px;
    }
}
