body {
    background-color: #6b471f;
    color: #fff;
    font-family: "Malgun Gothic", sans-serif;
}
.container-box {
    max-width: 720px;
    margin: auto;
    background-color: #8b5e3c;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}
.nav-tabs .nav-link.active {
    background-color: #cf9f6b;
    color: #fff;
    font-weight: bold;
    border: none;
}
.nav-tabs .nav-link {
    color: #eee;
}
.job-sub-tabs button {
    margin: 4px 4px 0 0;
    background-color: #d4a46e;
    color: #442f1d;
    border: none;
    font-weight: bold;
}
.job-sub-tabs button:hover,
.job-sub-tabs button:focus {
    background-color: #eec38a;
    color: #000;
}
.calc-box input {
    background-color: #f9f1e5;
    color: #000;
    border: 1px solid #ccb396;
}
.menu-toggle {
    font-size: 24px;
    background: none;
    border: none;
    color: #fff;
    z-index: 1001;
    display: none;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #a06e3e;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: max-content;
}
.mobile-menu.show {
    display: flex !important;
}
.mobile-menu a {
    padding: 10px 15px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.menu-link {
    border: none;
    color: #442f1d;
    font-weight: bold;
}
@media (max-width: 767.98px) {
    .desktop-menu {
        display: none !important;
    }
    .menu-toggle {
        display: block;
    }
    .simulationBox label{
        font-size:0.9rem;
    }
}

.menu-link.active {
    background-color: #cf9f6b;
    color: #fff;
    font-weight: bold;
    border: none;
}

.mobile-menu a.active {
    background-color: #cf9f6b;
    color: #fff;
    font-weight: bold;
    border: none;
}

