body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #121214;
    color: #e4e4e7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.container {
    text-align: center;
    max-width: 400px;
    width: 100%;
    padding: 20px;
}
h1 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: -0.025em;
}
.links-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.link-card {
    background-color: #1e1e24;
    color: #38bdf8;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #2d2d34;
    transition: all 0.2s ease;
    
    /* Hidden by default until access level is confirmed */
    display: none; 
}
.link-card:hover {
    background-color: #25252e;
    border-color: #38bdf8;
    transform: translateY(-1px);
}
/* Public fallback: Always visible to anyone logged into the gateway */
.link-card.public {
    display: block;
}
/* Flex layout to place currency right next to input */
.input-with-select {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.input-with-select input {
    flex: 1; /* Input field stretches to fill remaining space */
    height: 30px;
    box-sizing: border-box;
    padding: 0 12px;
}

.input-with-select select {
    padding: 0.5rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
    font-size: 1rem;
}

/* Subtle styling block for the italicized live tracker hint */
.converted-hint {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #666;
}

/* Match currency dropdown height to primary button and standard text size */
#currency-select {
    font-size: 1rem; /* Same size as standard page text */
    font-family: inherit;
    height: 30px; /* Matches the height of the primary action button */
    width: 100px; /* Adjusted width for currency codes */
    padding: 0 10px;
    box-sizing: border-box;
}
