.your-ip-container {
    max-width: 1400px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.your-ip-header {
    background: linear-gradient(135deg, #00a78b 0%, #008c74 100%);
    color: white;
    padding: 30px;
    text-align: center;
    font-size: 28px;
    font-weight: 500;
}

.your-ip-content {
    background: white;
    padding: 40px;
}

.your-ip-loading {
    text-align: center;
    padding: 40px;
    color: #00a78b;
    font-size: 18px;
}

.your-ip-info {
    background: white;
}

.your-ip-row {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.your-ip-row:last-of-type {
    border-bottom: none;
}

.your-ip-label {
    padding: 20px 30px;
    font-weight: 700;
    color: #333;
    background: #fff;
    min-width: 280px;
    font-size: 16px;
}

.your-ip-value {
    padding: 20px 30px;
    color: #333;
    background: #f8f9fa;
    font-size: 18px;
    font-weight: 400;
    flex: 1;
}

.your-ip-notice {
    margin-top: 30px;
    padding: 20px 30px;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 6px;
    color: #0c4a6e;
    line-height: 1.8;
    font-size: 14px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .your-ip-content {
        padding: 20px;
    }
    
    .your-ip-row {
        flex-direction: column;
    }
    
    .your-ip-label {
        border-bottom: 1px solid #e0e0e0;
        padding: 15px 20px;
        background: #f8f9fa;
        min-width: auto;
    }
    
    .your-ip-value {
        padding: 15px 20px;
        background: #fff;
    }
    
    .your-ip-notice {
        padding: 15px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .your-ip-header {
        font-size: 22px;
        padding: 20px;
    }
    
    .your-ip-label {
        font-size: 14px;
    }
    
    .your-ip-value {
        font-size: 16px;
    }
}
