@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500&display=swap');

#ip-display-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 39px;
    background-color: #003978;
    color: #ffffff;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}

.ip-display-container {
    display: flex;
    align-items: center;
    padding: 0 14px;
}

.ip-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    color: #003978;
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
    margin-right: 8px;
    flex-shrink: 0;
}

.ip-text {
    white-space: nowrap;
}

.ip-address {
    font-weight: 500;
}

/* Push site content down to prevent overlap */
body {
    padding-top: 39px !important;
}

@media (max-width: 600px) {
    #ip-display-bar {
        font-size: 12px;
    }
    .ip-icon {
        width: 16px;
        height: 16px;
        font-size: 8px;
    }
}
