/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
    margin: 0;
    padding: 0;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
}

/* Weyzerit Header Styles */
.wyz-top-banner-content, .wyz-navbar-content {
    max-width: 1152px;
}

.wyz-top-banner {
    background: linear-gradient(to right, #b57edc, #60a5fa);
    color: white;
    padding: 8px 0;
    text-align: center;
    font-size: 14px;
    position: relative;
}

.wyz-top-banner-content {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wyz-banner-link {
    color: white;
    font-weight: bold;
    text-decoration: underline;
}

.wyz-banner-close {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-left: auto;
}

.wyz-top-upgrade {
    margin-left: 20px;
}

.wyz-upgrade-btn {
    background-color: #e74c3c;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.wyz-upgrade-btn:hover {
    background-color: #c0392b;
}

.wyz-navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    padding: 8px 0;
    width: 100%;
}

.wyz-navbar-content {
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wyz-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #359756;
}

.wyz-logo-icon {
    margin-right: 10px;
    font-size: 28px;
}

.wyz-nav-links {
    display: flex;
font-size: 14px;
    /* gap: 20px; */
    flex-grow: 1;
    justify-content: right;
    /* align-items: center; */
    align-items: right;
}

.wyz-nav-link {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease-in-out;
    padding: 8px 12px;
    border-radius: 4px;
}

.wyz-nav-link:hover {
    color: #359756;
    background-color: #f8f9fa;
}

/* Active navigation state */
.wyz-nav-active {
    color: #359756 !important;
    font-weight: 600;
    position: relative;
}

.wyz-nav-active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #359756 0%, #2d7a47 100%);
    border-radius: 2px 2px 0 0;
}

.wyz-active {
    color: #359756;
    border-bottom: 2px solid #359756;
}


.wyz-badge {
    background-color: #359756;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 12px;
}


/* Responsive styles */
.wyz-hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

.wyz-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 1000;
    flex-direction: column;
    overflow-y: auto;
}

.wyz-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1001;
}

.wyz-mobile-logo {
    font-size: 20px;
    font-weight: bold;
    color: #359756;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wyz-mobile-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.wyz-mobile-close:hover {
    background-color: #f0f0f0;
    color: #333;
}

.wyz-mobile-links {
    flex: 1;
    padding: 20px 0;
}

.wyz-mobile-menu.wyz-show {
    display: flex;
}

.wyz-mobile-link {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wyz-mobile-link:last-child {
    border-bottom: none;
}

.wyz-mobile-link:hover {
    background-color: #f8f9fa;
    color: #359756;
}

/* Active state for mobile links */
.wyz-mobile-link.wyz-nav-active {
    color: #359756;
    font-weight: 600;
    background-color: #f0f9f0;
    border-left: 4px solid #359756;
}

@media (max-width: 768px) {
    .wyz-nav-links {
        display: none;
    }
    .wyz-hamburger {
        display: block;
    }
    .wyz-navbar-content {
        padding: 0 15px;
    }
}