.gcm-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    display: none;
    line-height: 1.2;
}

.gcm-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    gap: 15px;
}

.gcm-message {
    margin: 0;
    flex: 1;
    display: inline;
    white-space: normal;
}

.gcm-message a {
    color: #1e90ff;
    text-decoration: underline;
    display: inline;
    margin-left: 4px;
}

.gcm-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.gcm-button {
    background-color: #1e90ff;
    color: #fff;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 13px;
    border-radius: 4px;
    transition: background-color 0.3s;
    white-space: nowrap;
    min-height: 28px;
    line-height: 1;
}

.gcm-button:hover {
    background-color: #155b9a;
}

@media (max-width: 768px) {
    .gcm-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .gcm-message {
        text-align: center;
    }
    
    .gcm-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .gcm-button {
        flex: 1;
        max-width: 120px;
    }
}