/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

/* Header */
.header {
    margin-bottom: 9px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 8px 0;
    border-bottom: 1px solid #00ff88;
    margin-bottom: 12px;
}

.logo {
    display: flex;
    align-items: center;
    column-gap: 8px;
    row-gap: 1px;
    flex-wrap: wrap;
}

.logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #00ff88;
    text-shadow: 0 0 8px #00ff88;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #00cc66;
    letter-spacing: 1.5px;
    margin-top: 1px;
    line-height: 1;
}

.auth-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
    width: 100%;
}

.header-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    background: rgba(0, 255, 136, 0.12);
    border: 1px solid rgba(0, 255, 136, 0.6);
    border-radius: 999px;
    color: #00ff88;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    text-transform: uppercase;
}

.header-link-btn svg {
    flex-shrink: 0;
    stroke: currentColor;
    width: 16px;
    height: 16px;
}

.header-link-btn:hover {
    background: rgba(0, 255, 136, 0.2);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.25);
    transform: translateY(-1px);
}

.header-link-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(0, 255, 136, 0.6);
    color: #f4fff9;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid #00ff88;
    border-radius: 4px;
    overflow: visible;
    position: relative;
}

.user-type {
    background: #00ff88;
    color: #000;
    padding: 3px 6px;
    border-radius: 2px;
    font-size: 0.7rem;
    font-weight: 500;
    margin-right: 6px;
}

.logout-btn {
    background: #ff4444;
    color: #fff;
    border: none;
    padding: 3px 6px;
    border-radius: 2px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
    height: 24px;
    line-height: 1;
}

.logout-btn:hover {
    background: #ff6666;
    box-shadow: 0 0 10px #ff4444;
}

.google-signin-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #333;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 500;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, color 0.3s ease, border 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 255, 136, 0.3);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    min-height: 36px;
    min-width: 180px;
}

.google-signin-btn:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.google-signin-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.google-signin-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    pointer-events: none; /* SVG'ye tıklama event'lerini engelle */
}

#google-signin-btn-container {
    display: none;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    flex: 1;
    margin-bottom: 20px;
    align-items: stretch;
}

