/* Global Styles for W9FST Ham Dashboard */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0f0f0f;
    color: #e0e0e0;
    line-height: 1.5;
}

.navbar {
    background-color: #1a1a1a;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #333;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #60c5ff;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 12px;
    font-size: 16px;
}

.nav-links a:hover {
    color: #60c5ff;
}

.iframe-container {
    height: calc(100vh - 60px);
    width: 100%;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 8px;
    background-color: #1a1a1a;
    font-size: 14px;
    color: #888;
    border-top: 1px solid #333;
}

/* Card styles for main menu */
.card {
    background: #1e1e1e;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.2s;
}

.card:hover {
    background: #2a2a2a;
    border-color: #60c5ff;
    transform: translateY(-2px);
}