.container {
    width: 98%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 1rem;
    gap: 0.4rem;
}

#global-symbol {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--accent-green);
    font-size: 2.0rem;
    font-weight: 700;
    padding: 0.5rem 0;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    text-align: center;
    outline: none;
    font-family: 'Outfit', sans-serif;
    width: 280px;
    display: block;
    margin: 0 auto;
}

#global-symbol:hover {
    background: #0d0e11;
    border-color: var(--glass-border);
    box-shadow: 0 0 15px var(--glow-green);
}

.alert-grid {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}